Up to date

This page is up to date for Godot 4.3. If you still find outdated information, please open an issue.

SQLiteQueryResultΒΆ

Inherits: RefCounted < Object

A result from a SQLiteQuery run.

DescriptionΒΆ

A result from a SQLiteQuery run.

PropertiesΒΆ

Array

arguments

[]

String

error

""

int

error_code

0

String

query

""

Array[Array]

result

[]


Property DescriptionsΒΆ

Array arguments = [] πŸ”—

The arguments of the query.


String error = "" πŸ”—

Present if there is an error.


int error_code = 0 πŸ”—

  • int get_error_code()

Present if there is an error.


String query = "" πŸ”—

The query that was run.


Array[Array] result = [] πŸ”—

The result of the query.