Skip to main content

One doc tagged with "sqlite"

View all tags

db_close

Closes an SQLite database that was opened with db_open.

DB_ExecuteQuery

The function is used to execute an SQL query on an opened SQLite database.

db_get_mem_handle

Get memory handle for an SQLite database that was opened with db_open.

DB_GetFieldCount

Gets the number of fields from the specified result set allocated with `DB_ExecuteQuery`.

DB_GetFieldFloat

Gets the content of a field as a floating point number with the specified field index.

DB_GetFieldFloatByName

Gets the contents of the field as a floating point number with the specified field name.

DB_GetFieldInt

Get the content of a field as an integer from DB_ExecuteQuery.

DB_GetLegacyDBResult

Gets the memory handle for a SQLite database result set that was allocated with `DB_ExecuteQuery`.

DB_GetMemHandle

Gets the memory handle for a SQLite database connection that was opened with `DB_Open`.

db_next_row

Moves to the next row of the result allocated from db_query.

db_open

This function is used to open a connection to a SQLite database, which is inside the "/scriptfiles" folder.

db_query

This function is used to execute an SQL query on an opened SQLite database.

DB_SelectNextRow

Moves to the next row of the result set allocated with `DB_ExecuteQuery`.