10. Overview SQLiteΒΆ
SQLite databases can be created and edited with the functions described here. SQLite is a public domain SQL database embedded in UniPlot. More information can be found at http://www.sqlite.org.
Documentation for SQLite 3, see http://sqlite.org/docs.html.
sqlite3 Functions |
|
---|---|
sqlite3_busy_timeout sets the time limit to open a locked SQLite database. |
|
sqlite3_close closes the open SQLite database. |
|
sqlite3_execute executes an SQL command. |
|
sqlite3_last_insert_rowid returns the integer primary key of the last INSERT command. |
|
sqlite3_libencoding returns the SQLite database string coding. In this version it returns |
|
sqlite3_libversion returns the SQLite library version. |
|
sqlite3_open opens an SQLite database. If the database does not exist it will be created. |
More information at SQLite (SQL).
sqlite Functions |
|
---|---|
Removed, use sqlite3_busy_timeout. |
|
Removed, use sqlite3_close. |
|
Removed, use sqlite3_execute. |
|
Removed, use sqlite3_last_insert_rowid. |
|
Removed, use sqlite3_libencoding. |
|
sqlite_libversion returns the SQLite library version. |
|
Removed, use sqlite3_open. |
See also
Overview PostgreSQL, Overview Files, Overview UniPlot Data Files, Overview Binary and Text Files, UniScript Functions Overview
id-276952