mariadb get value index int: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 14: Line 14:
== Example ==
== Example ==
<syntaxhighlight lang="Lua>
<syntaxhighlight lang="Lua>
local value = cache_get_value_index_int(1, 1);
local value = mariadb_get_value_index_int(1, 1);
AddPlayerChat(playerid, "The value in the first row and in the column 1 is "..value);
AddPlayerChat(playerid, "The value in the first row and in the column 1 is "..value);
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 08:11, 3 April 2021

mariadb get value index int

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 decimal number.

Syntax

mariadb_get_value_index_int(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 = mariadb_get_value_index_int(1, 1);
AddPlayerChat(playerid, "The value in the first row and in the column 1 is "..value);

See also