Scripting/Squirrel/Functions/SQLite/GetSQLNextRow
From VC-MP Wiki
This function returns the next row of the given query result, or null if there are no more rows.
Syntax
sqliteQuery GetSQLNextRow( sqliteQuery query )
Arguments
- query - The query result from QuerySQL or from a previously executed GetSQLNextRow
Example
For usage example, check the general SQLite database example from the wiki tutorials.
Related Functions
- ConnectSQL
- DisconnectSQL
- QuerySQL
- GetSQLNextRow
- GetSQLColumnCount
- GetSQLColumnData
- FreeSQLQuery
