SqlImport

From NSB App Studio
Revision as of 18:16, 5 August 2012 by Ghenne (talk | contribs)
Jump to navigation Jump to search

SQLIMPORT(JSON, [DB], [callback], [overwrite])

Description

SQLImport converts a JSON object created using SQLExport into an SQLite database. The JSON object can come from an AJAX call or from an included JavaScript.

SQLImport may report errors if the database used by SQLExport has features that are not supported on the current platform, or if the syntax of the JSON is invalid. For example, Safari (at the time of this writing) does not support timestamp in constraints, images or indexes. Embedded carriage returns in string fields will also cause errors.You will need to remove these items from the database before doing SQLExport.

DB is an optional argument. If supplied, the reference to the database is assigned to it. There is no need to do an SqlOpenDatabase. It can be left empty if not needed.

callback is the name of a function to be called when the import is complete. If it is not supplied,execution will be blocked until the import is completed.

overwrite can be true or false. If it is not supplied, it defaults to true. When true, if the version of the database is the same as in the JSON object, nothing happens. Otherwise, the database is overwritten. To change the version of a database, use the command DB.changeVersion(oldVersionString, newVersionString).

If overwrite is false, the database is checked for a version number. If there is no version number, the database is presumed to be new and the data is written to the database.

Example

Function btnSQLImport_onclick()
  SQLImport(DBjson, DB)
    
  'refresh the selection
  sqlList=Array(["SELECT * from customerData ORDER BY name;", dataHandler])
  Sql(DB, sqlList)
End Function

Output

(the database is imported and a selection is made)

Related Items

SQLEXPORT