Skip to main content

18 docs tagged with "sqlite"

View all tags

db_close

Closes a SQLite database connection that was opened with `db_open`.

DB_ExecuteQuery

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

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_open

The function is used to open a connection to a SQLite database file, which is inside the `/scriptfiles` folder.

DB_SelectNextRow

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