C# Class DroidExplorer.Plugins.Data.SqliteDataProvider

Inheritance: IDisposable
Afficher le fichier Open project: camalot/droidexplorer

Méthodes publiques

Méthode Description
Close ( ) : void

Closes this instance.

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Open ( ) : void

Opens this instance.

SqliteDataProvider ( string file ) : System

Initializes a new instance of the SqliteDataProvider class.

Méthodes protégées

Méthode Description
ExecuteNonQuery ( string sql ) : int

Executes the non query.

ExecuteReader ( string sql ) : SQLiteDataReader

Executes the reader.

ExecuteScalar ( string sql ) : object

Executes the scalar.

Method Details

Close() public méthode

Closes this instance.
public Close ( ) : void
Résultat void

Dispose() public méthode

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
Résultat void

ExecuteNonQuery() protected méthode

Executes the non query.
protected ExecuteNonQuery ( string sql ) : int
sql string The SQL.
Résultat int

ExecuteReader() protected méthode

Executes the reader.
protected ExecuteReader ( string sql ) : SQLiteDataReader
sql string The SQL.
Résultat System.Data.SQLite.SQLiteDataReader

ExecuteScalar() protected méthode

Executes the scalar.
protected ExecuteScalar ( string sql ) : object
sql string The SQL.
Résultat object

Open() public méthode

Opens this instance.
public Open ( ) : void
Résultat void

SqliteDataProvider() public méthode

Initializes a new instance of the SqliteDataProvider class.
public SqliteDataProvider ( string file ) : System
file string The file.
Résultat System