|/
|\ISS               Tidbits  Posts  Answers  Install  Wiki  Contact  Donate  GitHub


sqlite                                                            version 3.37.0
________________________________________________________________________________

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
client–server 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]
* History ................................................................ [003]
* References ............................................................. [004]


[001] Installation
________________________________________________________________________________

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


[002] Usage
________________________________________________________________________________

Refer to the manual pages and command help output.


[003] History
________________________________________________________________________________

2021-11-28 c41295f9 sqlite: 3.37.0
2021-07-27 8a8e0d18 sqlite: better method of disabling readline
2021-07-18 0d0cda49 sqlite: update for new env
2021-07-15 88066125 sqlite: use MAJOR/MINOR/PATCH
2021-07-03 ea25146b sqlite: remove sed -i
2021-06-30 4d644c55 sqlite: 3.36.0
2020-08-15 16eb5a32 sqlite: 3.33.0
2020-06-18 4c1a4815 sqlite: bump to 3.32.3
2020-06-05 08115981 sqlite: bump to 3.32.2
2020-05-26 9b5ad0cf sqlite: bump to 3.32.1
2020-05-23 92cb8dc8 sqlite: bump to 3.32.0
2020-02-14 313dd7c1 sqlite: clean up
2020-01-28 0e47e119 sqlite: bump to 3.31.1
2020-01-23 b257d851 sqlite: bump to 3.31.0
2019-11-28 df19703a sqlite: enable option for qt5
2019-11-18 d6c59e1c sqlite: remove useless quotes
2019-10-12 92591997 sqlite: bump to 3.30.1
2019-10-05 66ddc737 sqlite: new package at 3.30.0


[004] References
________________________________________________________________________________

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



________________________________________________________________________________

Dylan Araps (C) 2019-2021

The registered trademark Linux(R) is used pursuant to a sublicense from the
Linux Foundation, the exclusive licensee of Linus Torvalds, owner of the mark
on a world­wide basis.