summaryrefslogtreecommitdiff
path: root/databases/sqlite/distinfo
AgeCommit message (Collapse)AuthorFilesLines
2002-01-03Revert previous changes so that they can be done in the approriate way.agc1-3/+3
2002-01-03*** empty log message ***reinoud1-3/+3
2001-12-15Updated SQLite package to version 2.1.7 fixingreinoud1-3/+3
1) locking problems due to a few race conditions 2) fixing a bug in `create temporary table' wich could contaminate the main database file opened too 3) bug fix in b-tree subsystem that could sometimes cause the first row of a table to be repeated during a database scan.
2001-12-05Update sqlite package to version 2.1.4 (2001-12-04) incorporating lockupreinoud1-8/+3
bugs removal, fixing the behaviour of comparison operators so that they are consistent with the order of entries in an index, correct handling of integers in SQL expressions that are larger than what can be represented by the machine integer and locking protocol fixes. The author also incorporated my suggestions after the messy LP64 patches I made; its now a lot more clean allthough there are still a few warnings but they are checked and OK.
2001-11-19Just noted that some important bugfixes were made to version 2.1.0 to makereinoud1-3/+3
version 2.1.1
2001-11-19Update SQLite package to version 2.1.0 from 2.0.5reinoud1-5/+4
2001-10-20Patch to make sqlite work on LP64 machines. I tried to make the patch asreinoud1-2/+8
less invasive as posible without rewriting stuff. The main problems were the assumption that a pointer and an int had the same size. Also there were strange casts near calculations that were not nessisary.
2001-10-16databases/sqlite: SQL Database Engine In A C Libraryjlam1-0/+5
SQLite is a C library that implements an SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library. SQLite is not a client library used to connect to a big database server. SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk.