Documentation Home DocumentationSqliteNet
SQLiteNET->DB_DATA_TABLE_MODE
Values
DATATABLE
NODATATABLE
This Enumeration is used with the Execute method in the Database Class.
DATATABLE means that the object will fill a datatable object if any rows are returned from the SQL statement.
NODATATABLE means that the object will not fill the datatable even if rows are returned from the SQL statement
Example
DB.Execute("Select * from sqlite_master",SQLiteNET.DB_EVENT_MODE.EVENTS,SQLiteNET.DB_DATA_TABLE_MODE.NODATATABLE)