mariadb get value name int: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 2: Line 2:
{{Notice|This function is provided by the official [[MariaDB]] plugin.}}
{{Notice|This function is provided by the official [[MariaDB]] plugin.}}


{{FuncDescription|Get the value from the query using the row index and column name.}}
{{FuncDescription|Get the integer value from the query using the row index and column name.}}


{{FuncSyntax|mariadb_get_value_name_int(row_idx, column_name)}}
{{FuncSyntax|mariadb_get_value_name_int(row_idx, column_name)}}
Line 10: Line 10:
{{FuncParam|column_name|The column name.}}
{{FuncParam|column_name|The column name.}}


{{FuncReturnValue|Returns value. '''false''' on error.}}
{{FuncReturnValue|Returns integer value. '''false''' on error.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
local player_health = cache_get_value_name_int(1, "health");
AddPlayerChat(playerid, "The value in the first row and in the column 'health' is "..player_health);
</syntaxhighlight>


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

Latest revision as of 08:55, 2 September 2020

mariadb get value name int

Type: Function
Context: Server
Introduced: v1.0

NOTICE

This function is provided by the official MariaDB plugin.

Description

Get the integer value from the query using the row index and column name.

Syntax

mariadb_get_value_name_int(row_idx, column_name)

Parameters

  • row_idx
    The row index.
  • column_name
    The column name.

Return Value

  • Returns integer value. false on error.

Example

local player_health = cache_get_value_name_int(1, "health");
AddPlayerChat(playerid, "The value in the first row and in the column 'health' is "..player_health);

See also