Difference between revisions of "SQLite"
From ArmadeusWiki
(Created page with "==Installation== <pre class="host"> $ make menuconfig </pre> <pre class="config"> ... Target packages ---> ... Libraries ---> ... Database --->...") |
(→Usage) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 23: | Line 23: | ||
==Usage== | ==Usage== | ||
| − | ''sqlite3'' shell command is available to create/fill/interrogate databases. Some examples are | + | * 1 minute tutorial: [https://www.sqlite.org/quickstart.html] |
| + | |||
| + | ===Command line=== | ||
| + | ''sqlite3'' shell command is available to create/fill/interrogate databases. Some examples are given here: [https://www.sqlite.org/cli.html] | ||
| + | |||
| + | ===C/C++ program=== | ||
| + | * C/C++ API is detailed here: [https://www.sqlite.org/cintro.html] | ||
| + | |||
| + | ==Links== | ||
| + | * https://www.sqlite.org | ||
Latest revision as of 14:29, 4 April 2018
Installation
$ make menuconfig
...
Target packages --->
...
Libraries --->
...
Database --->
...
[*] sqlite
- rebuild your rootfs:
$ make menuconfig
- and the reflash it on your SOM.
Usage
- 1 minute tutorial: [1]
Command line
sqlite3 shell command is available to create/fill/interrogate databases. Some examples are given here: [2]
C/C++ program
- C/C++ API is detailed here: [3]