C# Class DroidExplorer.Plugins.Data.SqliteDataProvider

Inheritance: IDisposable
Mostrar archivo Open project: camalot/droidexplorer

Public Methods

Method 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.

Protected Methods

Method 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 method

Closes this instance.
public Close ( ) : void
return void

Dispose() public method

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

ExecuteNonQuery() protected method

Executes the non query.
protected ExecuteNonQuery ( string sql ) : int
sql string The SQL.
return int

ExecuteReader() protected method

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

ExecuteScalar() protected method

Executes the scalar.
protected ExecuteScalar ( string sql ) : object
sql string The SQL.
return object

Open() public method

Opens this instance.
public Open ( ) : void
return void

SqliteDataProvider() public method

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