mariadb get value index float

From Onset Developer Wiki
mariadb get value index float

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 an floating point number.

Syntax

mariadb_get_value_index_float(row_idx, column_idx)

Parameters

  • row_idx
    The row index (starts at 1)
  • column_idx
    The column index

Return Value

  • Returns the value on succes, false on error.

Example

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

See also