mariadb get query string

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
mariadb get query string

Type: Function
Context: Server
Introduced: v1.0

NOTICE

This function is provided by the official MariaDB plugin.

Description

Gets the query string of the active result.

Syntax

mariadb_get_query_string()

Parameters

  • This function has no parameters.

Return Value

  • Returns the query string.

Example

function LoadVehicle()
    local query = mariadb_prepare(sql, "SELECT * FROM vehicles WHERE id = 1;")
    mariadb_async_query(sql, query, OnLoadVehicle)
end

function OnLoadVehicle()
    local query = mariadb_get_query_string()
    print("The query was: ", query)
end

See also