mariadb get value name float

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
mariadb get value name float

Type: Function
Context: Server
Introduced: v1.0

NOTICE

This function is provided by the official MariaDB plugin.

Description

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

Syntax

mariadb_get_value_name_float(row_idx, column_name)

Parameters

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

Return Value

  • Returns float value. false on error.

Example

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

See also