Modules/MTA-MySQL/mysql fetch row

From Multi Theft Auto: Wiki
Revision as of 17:18, 14 January 2008 by Ryden (talk | contribs) (New page: __NOTOC__ Returns a table containing the current row of the last executed query. You can call this function repeatedly to retreive all the result rows. When there aren't more rows in the r...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Returns a table containing the current row of the last executed query. You can call this function repeatedly to retreive all the result rows. When there aren't more rows in the result it returns nil. You can go to a specific row calling mysql_data_seek()

Syntax

table mysql_fetch_rows ( MySQLResult result )

Required arguments

  • result: A valid MySQL result

Returns

A table with the current row

Example

Example 1: This example shows the name of all the registered accounts

local result = mysql_query(handler, "SELECT name FROM account") -- Execute the query
if (result) then
  while true do
    local row = mysql_fetch_row(result)
    if (not row) then break end

    outputDebugString(row[1])
  end
  mysql_free_result(result) -- Free the result
end

See also