sqlite_close

From Liberty Unleashed Wiki
Revision as of 16:45, 25 October 2010 by Force (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events
Note: This function requires the external module lu_sqlite.

This function closes a previously opened SQLite database.

Syntax

  1. bool sqlite_close( UserPointer database )

Arguments

  • database - This is a pointer to a previously opened database

Example

When the scripts unload, it will close the previously opened database.

  1.  
  2. function onScriptLoad()
  3. {
  4. LoadModule( "lu_sqlite" );
  5. pSQDatabase <- sqlite_open( "database.sqlite" );
  6. return 1;
  7. }
  8.  
  9. function onScriptUnload()
  10. {
  11. sqlite_close( pSQDatabase );
  12. return 1;
  13. }
  14.  

Notes

The function LoadModule and sqlite_open and event onScriptLoad and onScriptUnload 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