SIGN UP MEMBER LOGIN:    
Blog

List of some classes in Devart.Data namespace in SQLite

Posted by Monika Arora Blogs | SQLite Jan 13, 2012
In this blog I have explained some classes which are used in Devart.Data namespace.

List of Classes used in Devart.Data namespace in SQLite are as follows:

  • DbCommandBase: It indicates an SQL statement which is run to access data in SQL database.
     
  • DbDataAdapter: It indicates a set of commands and a connection of database that you use for filling the dataset and modify a database.
     
  • DbDataReaderBase: It enables you to read number of records in which you can't go backward from SQLite database. It means you can read only records that are forward only.
     
  • DbConnectionStringBuilder: It creates by itself connection strings that you use for establishing connection to an SQLite database.
     
  • DbDataSet: DbDataSet is used to indicate a cache of data which is in-memory type in connected model. In connected model ,your database must be open while you retrieve data from it to DataAdapter.
     
  • DbDataSourceEnumerator: It access the names of servers available in the network.
     
  • DbDataTable: This class indicates an individual object that offers all the functions that are required to access and modify data from a database.
     
  • DbScript: It runs number of SQL statements that are separated by special symbols.
     
  • SqlStatement: In a script there are list of statements. So it is used to show an individual statement from a list.
     
  • SqlStatementCollection: It indicates a number of statements from which SQLite script is made.
     
  • DbMonitor: It is used in applications that make use of .NET data providers for controlling dynamic SQL execution.
share this blog :
post comment