You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kexi/3rdparty/kexisql3/src/patches
tpearson 8362bf63de
Added old abandoned KDE3 version of koffice
15 years ago
..
README Added old abandoned KDE3 version of koffice 15 years ago
kexisql-3.2.8.patch Added old abandoned KDE3 version of koffice 15 years ago
mk_patch.sh Added old abandoned KDE3 version of koffice 15 years ago
remove_id.sh Added old abandoned KDE3 version of koffice 15 years ago

README

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;