Commit graph

14 commits

Author SHA1 Message Date
agc
3a835b9be2 Revert previous changes so that they can be done in the approriate way. 2002-01-03 08:47:19 +00:00
reinoud
1fbd586318 *** empty log message *** 2002-01-03 00:03:20 +00:00
agc
8b7324bf61 Don't use c99 uint*_t types, since they're not defined on 1.5.2 and
previous releases. Instead, fall back on the trusty u_int*_t types
from <sys/types.h>

Fixes a problem uncovered on a recent 1.5.2 bulk build.
2001-12-30 21:12:11 +00:00
reinoud
4dae5bda09 Small typo fixes to make `pkglint' happier.... 2001-12-15 22:21:22 +00:00
reinoud
8967b5bd52 Updated SQLite package to version 2.1.7 fixing
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-15 22:18:41 +00:00
reinoud
1aef1825b8 Update sqlite package to version 2.1.4 (2001-12-04) incorporating lockup
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-12-05 02:04:04 +00:00
reinoud
b2609cb011 SQLite is now on version 2.1.1 incorporating many changes, enhancements
and bugfixes including support for 16Mb rows. For a full change see the
website's changelog at http://www.hwaci.com/sw/sqlite/changes.html

The file format changed! so please dump the database in SQL with .dump in
the old version and import it later in the new version.
2001-11-19 15:43:16 +00:00
reinoud
dd74500881 Just noted that some important bugfixes were made to version 2.1.0 to make
version 2.1.1
2001-11-19 01:15:46 +00:00
reinoud
df59114aa4 Update SQLite package to version 2.1.0 from 2.0.5 2001-11-19 00:41:06 +00:00
zuntum
0ca28723fb Move pkg/ files into package's toplevel directory 2001-11-01 00:11:36 +00:00
reinoud
11c0beb7b1 Hmm... shouldn't have forgotten to ad the patches themselves.... (AHUM) 2001-10-20 18:52:38 +00:00
reinoud
e7f271ddfa Patch to make sqlite work on LP64 machines. I tried to make the patch as
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-20 18:51:37 +00:00
jlam
c6388cecc0 Add buildlink.mk file for use by other package Makefiles. 2001-10-16 16:24:35 +00:00
jlam
1171e3a7ee databases/sqlite: SQL Database Engine In A C Library
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.
2001-10-16 16:20:08 +00:00