mirror of
https://github.com/gnustep/libs-sqlclient.git
synced 2025-02-14 07:31:17 +00:00
Added SQLite
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/sqlclient/trunk@22085 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
67b9859bc8
commit
e0edc9e21a
3 changed files with 23 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-11-23 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
Added SQLite backend support.
|
||||
|
||||
2005-11-14 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
Factor out WebServer into separate library, and timer and caching
|
||||
|
|
11
README
11
README
|
@ -49,6 +49,13 @@ Current backend bundles are -
|
|||
I don't use MySQL... but the test program ran successfully with a
|
||||
vanilla install of the MySQL packages for recent Debian unstable.
|
||||
|
||||
* SQLite - a bundle using the sqlite3 library which supports an
|
||||
SQL-like API for direct access to a database file (rather than
|
||||
acting as a client of a database server process).
|
||||
Not as functional as the other backends (doesn't support dates
|
||||
for instance), but good enough for many purposes and very
|
||||
'lightweight'. See http://www.sqlite.org
|
||||
|
||||
* Oracle - a bundle using embedded SQL for Oracle.
|
||||
Completely untested... may even need some work to compile...
|
||||
but this *is* based on code which was working about a year ago.
|
||||
|
@ -64,8 +71,8 @@ To build this library you must have a basic GNUstep environment set up...
|
|||
|
||||
* The gnustep-make package must have been built and installed.
|
||||
* The gnustep-base package must have been built and installed.
|
||||
* You must hace sourced the GNUstep.sh script (from gnustep-make)
|
||||
to set up environment variables needed for building this.
|
||||
* The Performance library (from the dev-libs area in GNUstep CVS)
|
||||
must have been built and installed.
|
||||
* If this environment is in place, all you should need to do is
|
||||
run 'make' to configure and build the library, 'make install'
|
||||
to install it.
|
||||
|
|
12
SQLClient.h
12
SQLClient.h
|
@ -102,6 +102,14 @@
|
|||
I don't use MySQL ... but the test program ran successfully with a
|
||||
vanilla install of the MySQL packages for recent Debian unstable.
|
||||
</item>
|
||||
<item>
|
||||
SQLite - a bundle using the sqlite3 library which supports an
|
||||
SQL-like API for direct access to a database file (rather than
|
||||
acting as a client of a database server process).<br />
|
||||
Not as functional as the other backends (doesn't support dates
|
||||
for instance), but good enough for many purposes and very
|
||||
'lightweight'. See http://www.sqlite.org
|
||||
</item>
|
||||
<item>
|
||||
Oracle - a bundle using embedded SQL for Oracle.<br />
|
||||
Completely untested ... may even need some work to compile ... but
|
||||
|
@ -129,8 +137,8 @@
|
|||
The gnustep-base package must have been built and installed.
|
||||
</item>
|
||||
<item>
|
||||
You must have sourced the GNUstep.sh script (from gnustep-make) to set
|
||||
up environment variables needed for building this.
|
||||
The Performance library (from the dev-libs area in GNUstep CVS)
|
||||
must have been built and installed.
|
||||
</item>
|
||||
<item>
|
||||
If this environment is in place, all you should need to do is run 'make'
|
||||
|
|
Loading…
Reference in a new issue