Squirrel/Server/Functions/SQLite/sqlite next row

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Created page with '{{Squirrel/Title|sqlite_next_row}} {{RequiresModule|lu_sqlite|Modules/Squirrel/lu_sqlite}} This function returns the next result row of the query result struct. If the query has …')
 
Line 13: Line 13:
 
== Example ==
 
== Example ==
  
Some explanation here.
+
This will see if anymore data is in the results when 'nextrow' is typed into the server console.
{{Squirrel/NeedsExample}}
+
  
 
<code lang="squirrel">
 
<code lang="squirrel">
-- Todo
+
function onScriptLoad()
 +
{
 +
LoadModule( "lu_sqlite" );
 +
pSQDatabase <- sqlite_open( "database.sqlite" );
 +
 +
return 1;
 +
}
 +
 
 +
function onConsoleInput( szCommand, szText )
 +
{
 +
if ( szCommand == "nextrow" )
 +
{
 +
local query = sqlite_query( pSQDatabase, "SELECT Foo FROM Bar WHERE FooBar='" + szText + "'" );
 +
if ( query )
 +
{
 +
local data = sqlite_columndata( query, 0 );
 +
if ( data )
 +
{
 +
print( "Result: " + data );
 +
local data2 = sqlite_next_row( data );
 +
if ( data2 ) print( "Result 2: " + data2 );
 +
else print( "No moar data found!" );
 +
}
 +
else print( "No data found!" );
 +
}
 +
}
 +
 +
return 1;
 +
}
 
</code>
 
</code>
  
 
=== Notes ===
 
=== Notes ===
  
-- List of used functions and other notes here.
+
The function [[Squirrel/Server/Functions/Scripts/LoadModule|LoadModule]] and [[Squirrel/Server/Functions/SQLite/sqlite_open|sqlite_open]] and [[Squirrel/Server/Functions/SQLite/sqlite_open|sqlite_query]] and [[Squirrel/Server/Functions/Misc/print|print]] and event [[Squirrel/Server/Events/Misc/onScriptLoad|onScriptLoad]] and [[Squirrel/Server/Events/Misc/onConsoleInput|onConsoleInput]] were used in this example. More info about them in the corresponding pages.
  
 
For a larger example, check the [[Squirrel/Examples/SQLite|SQLite database example]] from the wiki tutorials.
 
For a larger example, check the [[Squirrel/Examples/SQLite|SQLite database example]] from the wiki tutorials.

Revision as of 17:04, 25 October 2010

Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events
Note: This function requires the external module lu_sqlite.

This function returns the next result row of the query result struct. If the query has no more result rows the function will return null, otherwise it will return a pointer to the next row.

Syntax

  1. UserPointer sqlite_next_row( UserPointer result )

Arguments

  • result - This is a pointer to a result struct retrieved from sqlite_query or another iteration of sqlite_next_row

Example

This will see if anymore data is in the results when 'nextrow' is typed into the server console.

  1.  
  2. function onScriptLoad()
  3. {
  4. LoadModule( "lu_sqlite" );
  5. pSQDatabase <- sqlite_open( "database.sqlite" );
  6. return 1;
  7. }
  8.  
  9. function onConsoleInput( szCommand, szText )
  10. {
  11. if ( szCommand == "nextrow" )
  12. {
  13. local query = sqlite_query( pSQDatabase, "SELECT Foo FROM Bar WHERE FooBar='" + szText + "'" );
  14. if ( query )
  15. {
  16. local data = sqlite_columndata( query, 0 );
  17. if ( data )
  18. {
  19. print( "Result: " + data );
  20. local data2 = sqlite_next_row( data );
  21. if ( data2 ) print( "Result 2: " + data2 );
  22. else print( "No moar data found!" );
  23. }
  24. else print( "No data found!" );
  25. }
  26. }
  27. return 1;
  28. }
  29.  

Notes

The function LoadModule and sqlite_open and sqlite_query and print and event onScriptLoad and onConsoleInput were used in this example. More info about them in the corresponding pages.

For a larger example, check the SQLite database example from the wiki tutorials.

Related Functions

These functions are provided by the official module lu_sqlite.

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox