Skip to content

Commit 9e7eac3

Browse files
authored
Update links to LuaSQLite documentation (#208)
1 parent c7b3b7b commit 9e7eac3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

markdown/api/library/sqlite3/index.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
> __Type__ [Library][api.type.Library]
55
> __Revision__ [REVISION_LABEL](REVISION_URL)
66
> __Keywords__ sqlite3, database, sqlite
7-
> __See also__ [LuaSQLite Documentation](http://lua.sqlite.org/index.cgi/doc/tip/doc/lsqlite3.wiki)
7+
> __See also__ [LuaSQLite Documentation](https://lua.sqlite.org/home/doc/tip/doc/lsqlite3.wiki)
88
> [SQLite Language Reference](https://www.sqlite.org/lang.html)
99
> --------------------- ------------------------------------------------------------------------------------------
1010
1111
## Overview
1212

13-
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).
1414

1515

1616
## Gotchas
@@ -24,11 +24,11 @@ When providing a file path to `open()`, make sure to use [system.pathForFile()][
2424

2525
* `sqlite3.version()` — Returns the version of SQLite in use. Returns a string with SQLite version information in the form `x.y[.z]`.
2626

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).
2828

2929
* `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.
3030

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).
3232

3333

3434
## Examples

0 commit comments

Comments
 (0)