mariadb get value name

From Onset Developer Wiki
Revision as of 00:57, 19 December 2019 by BlueMountains (talk | contribs)
mariadb get value name

Type: Function
Context: Server
Introduced: v1.0

NOTICE

This function is provided by the official MariaDB plugin.

Description

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

Syntax

mariadb_get_value_name(row_idx, column_name)

Parameters

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

Return Value

  • Returns value. false on error.

Example

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

See also