mariadb get value index

From Onset Developer Wiki
Revision as of 13:44, 20 November 2019 by 28days (talk | contribs)
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 name

Return Value

  • Returns the value on success, false on error.

Example

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

See also