C# 클래스 DroidExplorer.Plugins.Data.SqliteDataProvider

상속: IDisposable
파일 보기 프로젝트 열기: camalot/droidexplorer

공개 메소드들

메소드 설명
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.

보호된 메소드들

메소드 설명
ExecuteNonQuery ( string sql ) : int

Executes the non query.

ExecuteReader ( string sql ) : SQLiteDataReader

Executes the reader.

ExecuteScalar ( string sql ) : object

Executes the scalar.

메소드 상세

Close() 공개 메소드

Closes this instance.
public Close ( ) : void
리턴 void

Dispose() 공개 메소드

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

ExecuteNonQuery() 보호된 메소드

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

ExecuteReader() 보호된 메소드

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

ExecuteScalar() 보호된 메소드

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

Open() 공개 메소드

Opens this instance.
public Open ( ) : void
리턴 void

SqliteDataProvider() 공개 메소드

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