Skip to main content

ISqlDataStore Members

Represents the interface for objects that need to interact with SQL Server databases,

Properties

Name Description
AutoCreateOption When implemented by a class, returns which operations are performed when a data store is accessed for the first time. Inherited from IDataStore.
Connection A IDbConnection object that specifies the connection to a data store, if the specified data store allows commands to be created.

Methods

Name Description
CreateCommand() Creates a command if the data store allows commands to be created.
ModifyData(ModificationStatement[]) Updates data in a data store using the specified modification statements. Inherited from IDataStore.
SelectData(SelectStatement[]) When implemented by a class, fetches data from a data store using the specified query statements. Inherited from IDataStore.
UpdateSchema(Boolean, DBTable[]) When implemented by a class, updates the storage schema according to the specified class descriptions. Inherited from IDataStore.
See Also