Method | Description | |
---|---|---|
Delete ( string sql ) : bool | ||
Delete ( string TableName, string Where ) : bool | ||
ExecuteNonQuery ( string sql, bool logerror = true ) : void | ||
Insert ( string sql ) : bool | ||
Insert ( string TableName, string Values ) : bool | ||
IsCreatedTable ( string Table ) : bool | ||
Query ( string query, bool logerror = true ) : DataTable |
Executes the given query on the database.
|
|
QueryFirstRow ( string query ) : DataRow |
Executes the given query on the database and returns the result's first row.
|
|
RemoveTable ( string Table ) : bool | ||
SQLite ( ) : System | ||
SQLite ( string file ) : System | ||
Update ( string sql ) : bool | ||
Update ( string TableName, string Set ) : bool | ||
Update ( string TableName, string Set, string Where ) : bool |
Method | Description | |
---|---|---|
Crash ( System.Data.SQLite.SQLiteException s, bool logerror, bool c = false ) : void | ||
Initialize ( string file ) : bool | ||
IsConnect ( ) : void |
public Delete ( string TableName, string Where ) : bool | ||
TableName | string | |
Where | string | |
return | bool |
public ExecuteNonQuery ( string sql, bool logerror = true ) : void | ||
sql | string | |
logerror | bool | |
return | void |
public Insert ( string TableName, string Values ) : bool | ||
TableName | string | |
Values | string | |
return | bool |
public IsCreatedTable ( string Table ) : bool | ||
Table | string | |
return | bool |
public Query ( string query, bool logerror = true ) : DataTable | ||
query | string | |
logerror | bool | |
return | DataTable |
public QueryFirstRow ( string query ) : DataRow | ||
query | string | Query to execute |
return | DataRow |
public Update ( string TableName, string Set ) : bool | ||
TableName | string | |
Set | string | |
return | bool |
public Update ( string TableName, string Set, string Where ) : bool | ||
TableName | string | |
Set | string | |
Where | string | |
return | bool |