useSQLite()
The function checks if an SQLite database is used.
Synopsis
bool useSQLite();
Parameters
-
Return value
The function returns TRUE if an SQLite database is used.
Description
The function checks if an SQLite database is used and returns TRUE if it is used.
The example checks if an SQLite database is used.
main(mapping event)
{
bool db;
db = useSQLite();
DebugN(db);
}
Assignment
Availability
CTRL
See also
See also other database functions in the chapter Database functions.