C# Class DAL.SQLiteDatabase

Afficher le fichier Open project: siracoj/signtolearn Class Usage Examples

Méthodes publiques

Méthode Description
ClearDB ( ) : bool
ClearTable ( String table ) : bool
Delete ( String tableName, String where ) : bool
ExecuteNonQuery ( string sql ) : int
ExecuteScalar ( string sql ) : string
GetDataTable ( string sql ) : DataTable
Insert ( String tableName, String>.Dictionary data ) : bool
SQLiteDatabase ( ) : System
Update ( String tableName, String>.Dictionary data, String where ) : bool

Method Details

ClearDB() public méthode

public ClearDB ( ) : bool
Résultat bool

ClearTable() public méthode

public ClearTable ( String table ) : bool
table String
Résultat bool

Delete() public méthode

public Delete ( String tableName, String where ) : bool
tableName String
where String
Résultat bool

ExecuteNonQuery() public méthode

public ExecuteNonQuery ( string sql ) : int
sql string
Résultat int

ExecuteScalar() public méthode

public ExecuteScalar ( string sql ) : string
sql string
Résultat string

GetDataTable() public méthode

public GetDataTable ( string sql ) : DataTable
sql string
Résultat System.Data.DataTable

Insert() public méthode

public Insert ( String tableName, String>.Dictionary data ) : bool
tableName String
data String>.Dictionary
Résultat bool

SQLiteDatabase() public méthode

public SQLiteDatabase ( ) : System
Résultat System

Update() public méthode

public Update ( String tableName, String>.Dictionary data, String where ) : bool
tableName String
data String>.Dictionary
where String
Résultat bool