SQLiteQueryResult๏
Inherits: RefCounted < Object
A result from a SQLiteQuery run.
Description๏
A result from a SQLiteQuery run.
Properties๏
|
||
|
||
|
||
|
||
|
Property Descriptions๏
Variant get_arguments()
The arguments used when executing the query.
These correspond to the bound parameters passed into the SQLiteQuery when it was run.
String get_error()
Contains the error message if the query execution failed.
If no error occurred, this will be an empty string.
int get_error_code()
The SQLite error code returned by the last executed query.
A value of 0 typically indicates success.
String get_query()
The original SQL query string that was executed to produce this result.
Array[Dictionary] result = [] ๐
Array[Dictionary] get_result()
The rows returned by the query, stored as an array of dictionaries where each dictionary represents a row mapping column names to values.