diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/3rdparty/kexisql3/src/patches/README | |
download | koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip |
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/patches/README')
-rw-r--r-- | kexi/3rdparty/kexisql3/src/patches/README | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kexi/3rdparty/kexisql3/src/patches/README b/kexi/3rdparty/kexisql3/src/patches/README new file mode 100644 index 00000000..c098fd7c --- /dev/null +++ b/kexi/3rdparty/kexisql3/src/patches/README @@ -0,0 +1,18 @@ +CHANGES in this version compared to official SQLite 3.2.8 + +(c) 2005-2006, Jaroslaw Staniek, js at iidea.pl + +- to simplify patching, removed lines with CVS variable "$Id" (see remove_id.sh script) +- test*.c and os_test.* files removed +- config.h updated for compatibility with KDE build tools and renamed to sqliteconfig.h +- for convenience in the code that optionally uses SQLite2, sqlite.h added as an alias for sqlite3.h +- in sqlite3_open(), sqlite3_open16() and related internal functions following args added: + int exclusive, /* If 1, exclusive read/write access is required, + else only shared writing is locked. */ + int allowReadonly /* If 1 and read/write opening fails, + try opening in read-only mode */ + Above functions in addition to SQLITE_CANTOPEN can now return following values + (useful for fine grained error-checking): + - SQLITE_CANTOPEN_WITH_LOCKED_READWRITE - unable to open with locked read/write access + - SQLITE_CANTOPEN_WITH_LOCKED_WRITE - unable to open with locked write access"; break; + |