Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: |
Downloads: |
Tarball
| ZIP archive
|
---|
Timelines: |
family
| ancestors
| descendants
| both
| trunk
|
Files: |
files
| file ages
| folders
|
SHA1: |
a8a1e64c573a5350f0281f0ed41c64954e132944 |
User & Date: |
drh
2013-12-31 14:34:57.198 |
Context
2014-01-01
| | |
18:11 |
|
(check-in: 9b6663f20a user: drh tags: trunk)
|
2013-12-31
| | |
14:34 |
|
(check-in: a8a1e64c57 user: drh tags: trunk)
|
2013-12-30
| | |
19:24 |
|
(check-in: b1eb2ef05f user: drh tags: trunk)
|
| | |
Changes
Changes to www/index.wiki.
︙ | | | ︙ | |
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
jni/Application.mk
jni/sqlite/* (copy contents of directory recursively)
src/org/sqlite/database/* (copy contents of directory recursively)
</pre>
<p>
Following this, the directory structures should contain
<a href=tree.wiki>these files</a>.
<p>
Directory "jni/sqlite/" contains copies of the sqlite3.h and sqlite3.c
source files. Between them, they contain the
<a href=http://www.sqlite.org/amalgamation.html>source code for the SQLite
library</a>. If necessary, replace these with the source for the specific
version of SQLite required. If SQLite is to be compiled with any special
|
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
jni/Application.mk
jni/sqlite/* (copy contents of directory recursively)
src/org/sqlite/database/* (copy contents of directory recursively)
</pre>
<p>
Following this, the directory structures should contain
[/tree?ci=trunk&re=%5e%28jni%7csrc%29/ | these files].
<p>
Directory "jni/sqlite/" contains copies of the sqlite3.h and sqlite3.c
source files. Between them, they contain the
<a href=http://www.sqlite.org/amalgamation.html>source code for the SQLite
library</a>. If necessary, replace these with the source for the specific
version of SQLite required. If SQLite is to be compiled with any special
|
︙ | | | ︙ | |
Deleted www/tree.wiki.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<pre>
.
├── jni
│ ├── Android.mk
│ ├── Application.mk
│ └── sqlite
│ ├── ALog-priv.h
│ ├── android_database_SQLiteCommon.cpp
│ ├── android_database_SQLiteCommon.h
│ ├── android_database_SQLiteConnection.cpp
│ ├── android_database_SQLiteDebug.cpp
│ ├── android_database_SQLiteGlobal.cpp
│ ├── Android.mk
│ ├── JniConstants.cpp
│ ├── JNIHelp.cpp
│ ├── nativehelper
│ │ ├── JniConstants.h
│ │ ├── jni.h
│ │ ├── JNIHelp.h
│ │ └── ScopedLocalRef.h
│ ├── README
│ ├── sqlite3.c
│ ├── sqlite3.h
├── src
└── org
└── sqlite
└── database
├── DatabaseErrorHandler.java
├── DefaultDatabaseErrorHandler.java
├── package.html
├── SQLException.java
└── sqlite
├── CloseGuard.java
├── DatabaseObjectNotClosedException.java
├── ExtraUtils.java
├── package.html
├── SQLiteAbortException.java
├── SQLiteAccessPermException.java
├── SQLiteBindOrColumnIndexOutOfRangeException.java
├── SQLiteBlobTooBigException.java
├── SQLiteCantOpenDatabaseException.java
├── SQLiteClosable.java
├── SQLiteConnection.java
├── SQLiteConnectionPool.java
├── SQLiteConstraintException.java
├── SQLiteCursorDriver.java
├── SQLiteCursor.java
├── SQLiteCustomFunction.java
├── SQLiteDatabaseConfiguration.java
├── SQLiteDatabaseCorruptException.java
├── SQLiteDatabase.java
├── SQLiteDatabaseLockedException.java
├── SQLiteDatatypeMismatchException.java
├── SQLiteDebug.java
├── SQLiteDirectCursorDriver.java
├── SQLiteDiskIOException.java
├── SQLiteDoneException.java
├── SQLiteException.java
├── SQLiteFullException.java
├── SQLiteGlobal.java
├── SQLiteMisuseException.java
├── SQLiteOpenHelper.java
├── SQLiteOutOfMemoryException.java
├── SQLiteProgram.java
├── SQLiteQueryBuilder.java
├── SQLiteQuery.java
├── SQLiteReadOnlyDatabaseException.java
├── SQLiteSession.java
├── SQLiteStatementInfo.java
├── SQLiteStatement.java
├── SQLiteTableLockedException.java
├── SQLiteTransactionListener.java
├── SqliteWrapper.java
</pre>
|
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
|
|