repo/extra/sqlite
Owen Rafferty 4a3cf4ab8a
sqlite: 3.44.0
2023-11-06 20:49:05 -06:00
..
README repo: check-in readmes 2021-08-26 07:22:10 +03:00
build *: explicit DESTDIR 2023-03-05 17:34:06 -06:00
checksums sqlite: 3.44.0 2023-11-06 20:49:05 -06:00
depends sqlite: new package at 3.30.0 2019-10-05 21:54:17 +03:00
sources sqlite: 3.44.0 2023-11-06 20:49:05 -06:00
version sqlite: 3.44.0 2023-11-06 20:49:05 -06:00

README

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

sqlite
________________________________________________________________________________

SQLite is a relational database management system (RDBMS) contained in a C
library. In contrast to many other database management systems, SQLite is not a
clientserver database engine. Rather, it is embedded into the end program.

SQLite generally follows PostgreSQL syntax. SQLite uses a dynamically and weakly
typed SQL syntax that does not guarantee the domain integrity. This means that
one can, for example, insert a string into a column defined as an integer.
SQLite will attempt to convert data between formats where appropriate, the
string "123" into an int in this case, but does not guarantee such  conversions
and will store the data as-is if such a conversion is not possible. [0]

Upstream: https://www.sqlite.org/index.html


[000] Index
________________________________________________________________________________

* Installation ........................................................... [001]
* Usage .................................................................. [002]
* References ............................................................. [003]


[001] Installation
________________________________________________________________________________

+------------------------------------------------------------------------------+
|                                                                              |
|  $ kiss b sqlite                                                             |
|                                                                              |
+------------------------------------------------------------------------------+


[002] Usage
________________________________________________________________________________

Refer to the manual pages and command help output.


[003] References
________________________________________________________________________________

[0] https://en.wikipedia.org/wiki/SQLite