You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CORONA_CORE_PRODUCT includes support for SQLite databases on all platforms. The documentation for LuaSQLite can be viewed [here](http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki).
13
+
CORONA_CORE_PRODUCT includes support for SQLite databases on all platforms. The documentation for LuaSQLite can be viewed [here](https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki).
14
14
15
15
16
16
## Gotchas
@@ -24,11 +24,11 @@ When providing a file path to `open()`, make sure to use [system.pathForFile()][
24
24
25
25
*`sqlite3.version()`— Returns the version of SQLite in use. Returns a string with SQLite version information in the form `x.y[.z]`.
26
26
27
-
*`file:exec( SQL_Command )`— Executes a SQL command in the database. Typically this is used to create tables, insert, update, append, or retrieve data from a database. In case of an error, this function returns a numerical [error code](http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes).
27
+
*`file:exec( SQL_Command )`— Executes a SQL command in the database. Typically this is used to create tables, insert, update, append, or retrieve data from a database. In case of an error, this function returns a numerical [error code](https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes).
28
28
29
29
*`file:nrows( SQL_Command )`— Returns successive rows from the SQL statement. Each call to the iterator returns a table in which the named fields correspond to the columns in the database.
30
30
31
-
*`file:close()`— Closes the database. In case of an error, this function returns a numerical [error code](http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes).
31
+
*`file:close()`— Closes the database. In case of an error, this function returns a numerical [error code](https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki#numerical_error_and_result_codes).
0 commit comments