Modules/MTA-MySQL/mysql data seek: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ Sets the row cursor of a result in the given row offset. The offset must be a value between '''1''' and '''mysql_num_rows()'''. ==Syntax== <...)
(No difference)

Revision as of 15:00, 14 January 2008

Sets the row cursor of a result in the given row offset. The offset must be a value between 1 and mysql_num_rows().

Syntax

mysql_data_seek ( MySQLResult result, int offset )

Required arguments

  • result: A valid MySQL result
  • offset: A valid row offset

Returns

This function doesn't return any value.

See also