mariadb get assoc: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 9: Line 9:
{{FuncParam|row_idx|The row index}}
{{FuncParam|row_idx|The row index}}


{{FuncReturnValue|Returns table with the column name as index}}
{{FuncReturnValue|Returns table with the column name as index. Returns '''false''' on error.}}


== Example ==
== Example ==
Line 19: Line 19:


function OnLoadVehicle()
function OnLoadVehicle()
     local result = mariadb_get_assoc(i) -- result is now a table with indexes of column name
     local result = mariadb_get_assoc(1) -- result is now a table with indexes of column name


     local id = tostring(result["id"]) -- This means that the result is basically a table, and the index is the column... pretty simple, right?
     local id = tostring(result["id"]) -- This means that the result is basically a table, and the index is the column... pretty simple, right?

Latest revision as of 08:42, 2 September 2020

mariadb get assoc

Type: Function
Context: Server
Introduced: v1.0

NOTICE

This function is provided by the official MariaDB plugin.

Description

Get the specified row's association in a table with column name as the index.

Syntax

mariadb_get_assoc(row_idx)

Parameters

  • row_idx
    The row index

Return Value

  • Returns table with the column name as index. Returns false on error.

Example

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

function OnLoadVehicle()
    local result = mariadb_get_assoc(1) -- result is now a table with indexes of column name

    local id = tostring(result["id"]) -- This means that the result is basically a table, and the index is the column... pretty simple, right?
    local modelid = math.tointeger(result["modelid"])
end

See also