Method | Description | |
---|---|---|
Insert ( string statement ) : long |
Inserts data into the database.
|
|
InsertAsync ( string statement ) : Task |
Asynchronously inserts data into the database.
|
|
ResetDatabase ( ) : bool |
Resets the database.
|
|
Select ( string statement ) : |
Selects data from the database.
|
|
SelectAsync ( string statement ) : Task |
Asynchonously selects data from the database.
|
|
SelectObject ( string statement ) : object |
Selects data from the database.
|
|
SelectObjectAsync ( string statement ) : Task |
Asynchronously selects data from the database.
|
|
Update ( string statement ) : bool |
Updates data in the database.
|
|
UpdateAsync ( string statement ) : Task |
Asynchronously updates data in the database.
|
Method | Description | |
---|---|---|
CloseConnection ( ) : bool | ||
CreateTables ( ) : bool | ||
DatabaseHandler ( ) : System | ||
DeleteDatabase ( ) : bool | ||
InitializeConnection ( ) : bool | ||
InitializeDatabase ( ) : bool | ||
OpenConnection ( ) : void |
public static Insert ( string statement ) : long | ||
statement | string | The statement. |
return | long |
public static InsertAsync ( string statement ) : Task |
||
statement | string | The statement. |
return | Task |
public static Select ( string statement ) : |
||
statement | string | The statement. |
return |
public static SelectAsync ( string statement ) : Task |
||
statement | string | The statement. |
return | Task |
public static SelectObject ( string statement ) : object | ||
statement | string | The statement. |
return | object |
public static SelectObjectAsync ( string statement ) : Task | ||
statement | string | The statement. |
return | Task |
public static Update ( string statement ) : bool | ||
statement | string | The statement. |
return | bool |
public static UpdateAsync ( string statement ) : Task |
||
statement | string | The statement. |
return | Task |