diff options
author | Wez Furlong <wez@php.net> | 2003-04-17 01:37:42 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-04-17 01:37:42 +0000 |
commit | cc5903adb4ddf184c5ce41f8a33371e564bd75ab (patch) | |
tree | fe569ec0740a4484b764d586659b2fc5bfe20a72 | |
parent | 25954d1d7259cced795089cf67a46c42a37eac03 (diff) | |
download | php-git-cc5903adb4ddf184c5ce41f8a33371e564bd75ab.tar.gz |
Add readme and todo
-rw-r--r-- | ext/sqlite/README | 14 | ||||
-rw-r--r-- | ext/sqlite/TODO | 9 |
2 files changed, 23 insertions, 0 deletions
diff --git a/ext/sqlite/README b/ext/sqlite/README new file mode 100644 index 0000000000..2f6cbb0f87 --- /dev/null +++ b/ext/sqlite/README @@ -0,0 +1,14 @@ +This is an extension for the SQLite Embeddable SQL Database Engine. +http://www.sqlite.org/ + +SQLite is a C library that implements an embeddable SQL database engine. +Programs that link with the SQLite library can have SQL database access +without running a separate RDBMS process. + +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 + + + +vim:tw=78:et diff --git a/ext/sqlite/TODO b/ext/sqlite/TODO new file mode 100644 index 0000000000..a299ff032f --- /dev/null +++ b/ext/sqlite/TODO @@ -0,0 +1,9 @@ +- Implement safe-mode checks on the filename when opening/creating the + database. + +- Implement a generic php function handler for use in SQL statements and + triggers etc. + +- Create a package.xml and make a release + +vim:tw=78 |