SqlExport: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 36: | Line 36: | ||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
[[Category:Miscellaneous]] |
Revision as of 22:30, 13 September 2012
SQLExport(db[, filename[, function]])
Description
The SQLExport function converts an SQLite database to a JSON object. This object can then be sent to another server using AJAX.
To include your own filename, include it as the second parameter. If nothing is suppled, ‘default’ will be used.
Since it can take some time to do the conversion with large databases, the SQLExport returns immediately and continues to run in the background. When it is complete, function is called in your app.
SQLExport is used by the IDE to convert databases listed in the manifest to JavaScript files which are included in the project.
Example
Function btnSQLExport_onclick() NSB.ShowProgress("Exporting database...") DBjson=SQLExport(DB,,exportComplete) End Function Function exportComplete() NSB.ShowProgress(False) MsgBox JSON.stringify(DBjson) End Function
Output
(a MsgBox showing the converted data as a string)