2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/extra/sqlite
Owen Rafferty 216af669b6
sqlite: fix checksum
closes #161
2023-09-13 18:00:48 -05:00
..
build *: explicit DESTDIR 2023-03-05 17:34:06 -06:00
checksums sqlite: fix checksum 2023-09-13 18:00:48 -05:00
depends sqlite: new package at 3.30.0 2019-10-05 21:54:17 +03:00
README repo: check-in readmes 2021-08-26 07:22:10 +03:00
sources sqlite: 3.43.1 2023-09-11 18:05:42 -05:00
version sqlite: 3.43.1 2023-09-11 18:05:42 -05:00

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