Lines Matching full:sqlite
1 Name: sqlite
2 URL: http://sqlite.org/
8 Instructions for importing a new release of SQLite from sqlite.org.
16 # You may wish to consult http://www.sqlite.org/changes.html to find out what
30 # manually navigate to www.sqlite.org and find downloads, use "legacy" version.
31 wget http://www.sqlite.org/sqlite-$BASE.tar.gz
32 wget http://www.sqlite.org/sqlite-$LATEST.tar.gz
35 tar xzf sqlite-$BASE.tar.gz
36 tar xzf sqlite-$LATEST.tar.gz
39 kdiff3 -m sqlite-$BASE sqlite-$LATEST sqlite
44 # Change to the sqlite directory:
45 cd sqlite
52 # should at least include the SQLite version number.
57 sqlite directory. Here is a list of the patches, in the order they should be
58 applied to a vanilla SQLite (of the version we currently have) to get, in
73 system-sqlite.patch
74 sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch
80 So, e.g. you could do this to apply all our patches to vanilla SQLite:
82 cd sqlite-$LATEST
83 patch -p0 < ../sqlite/misc.patch
84 patch -p0 < ../sqlite/preload-cache.patch
85 patch -p0 < ../sqlite/fts2.patch
86 patch -p0 < ../sqlite/fts3.patch
87 patch -p0 < ../sqlite/fts3_85522.patch
88 patch -p0 < ../sqlite/icu-shell.patch
89 patch -p0 < ../sqlite/webdb.patch
90 patch -p0 < ../sqlite/test.patch
91 patch -p0 < ../sqlite/mac_time_machine.patch
92 patch -p0 < ../sqlite/system-sqlite.patch
93 patch -p0 < ../sqlite/sqlite-3.7.6.3-fix-out-of-scope-memory-reference.patch
94 patch -p0 < ../sqlite/misalignment.patch
95 patch -p0 < ../sqlite/memcmp.patch
96 patch -p0 < ../sqlite/separate_cache_pool.patch
97 patch -p0 < ../sqlite/recover.patch
106 How to run the SQLite tests for the Chromium version of SQLite on Linux.
112 cd src/third_party/sqlite/src
144 SQLite tests.
149 http://www.sqlite.org/src/tktview/991789d9f3136a0460dc83a33e815c1aa9757c26
152 (e.g. see http://www.sqlite.org/cvstrac/tktview?tn=3765,39)
159 fts2_tokenizer.c try to go through some pointer to the sqlite API instead
177 to reuse most of the win32 SQLite VFS.
181 Linux-specific Chromium VFS to reuse most of the unix SQLite VFS.
205 - memcmp.patch backports ASAN-related fixes from SQLite trunk.