SQLite: Difference between revisions
From ArmadeusWiki
(Created page with "==Installation== <pre class="host"> $ make menuconfig </pre> <pre class="config"> ... Target packages ---> ... Libraries ---> ... Database --->...") |
(→Usage) |
||
Line 23: | Line 23: | ||
==Usage== | ==Usage== | ||
''sqlite3'' shell command is available to create/fill/interrogate databases. Some examples are | ''sqlite3'' shell command is available to create/fill/interrogate databases. Some examples are given here: [https://www.sqlite.org/cli.html] | ||
==Links== | |||
* https://www.sqlite.org |
Revision as of 15:24, 4 April 2018
Installation
$ make menuconfig
... Target packages ---> ... Libraries ---> ... Database ---> ... [*] sqlite
- rebuild your rootfs:
$ make menuconfig
- and the reflash it on your SOM.
Usage
sqlite3 shell command is available to create/fill/interrogate databases. Some examples are given here: [1]