mariadb get value index: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 8: Line 8:
{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|row_idx|The row index (starts at 1)}}
{{FuncParam|row_idx|The row index (starts at 1)}}
{{FuncParam|column_idx|The column name}}
{{FuncParam|column_idx|The column index}}


{{FuncReturnValue|Returns the value on '''success''', '''false''' on error.}}
{{FuncReturnValue|Returns the value on '''success''', '''false''' on error.}}
Line 14: Line 14:
== Example ==
== Example ==
<syntaxhighlight lang="Lua>
<syntaxhighlight lang="Lua>
local player_name = cache_get_value_name_int(1, "name");
local value = cache_get_value_index(1, 2);
AddPlayerChat(playerid, "The value in the first row and in the column 'name' is "..player_name);
AddPlayerChat(playerid, "The value in the first row and in the column 2 is "..value);
</syntaxhighlight>
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
{{Template:MariaDBFunctions}}
{{Template:MariaDBFunctions}}

Revision as of 13:50, 20 November 2019

mariadb get value index

Type: Function
Context: Server
Introduced: v1.0

NOTICE

This function is provided by the official MariaDB plugin.

Description

Retrieves a value from the result set as a string.

Syntax

mariadb_get_value_index(row_idx, column_idx)

Parameters

  • row_idx
    The row index (starts at 1)
  • column_idx
    The column index

Return Value

  • Returns the value on success, false on error.

Example

local value = cache_get_value_index(1, 2);
AddPlayerChat(playerid, "The value in the first row and in the column 2 is "..value);

See also