OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sqlite
(Results
1 - 25
of
1882
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium/app/sql/
DEPS
2
"+third_party/
sqlite
",
/external/chromium_org/sql/
DEPS
2
"+third_party/
sqlite
",
/external/sqlite/dist/
version
1
downloaded from http://www.
sqlite
.org/
sqlite
-amalgamation-3071100.zip
README-Android
0
SQLite
on Android
3
The Android port of
SQLite
contains a few customizations.
/external/javasqlite/src/main/java/SQLite/
Exception.java
1
package
SQLite
;
4
* Class for
SQLite
related exceptions.
10
* Construct a new
SQLite
exception.
Backup.java
1
package
SQLite
;
4
* Class wrapping an
SQLite
backup object.
10
* Internal handle for the native
SQLite
API.
19
protected void finish() throws
SQLite
.Exception {
33
} catch (
SQLite
.Exception e) {
38
protected native void _finalize() throws
SQLite
.Exception;
47
public boolean step(int n) throws
SQLite
.Exception {
53
private native boolean _step(int n) throws
SQLite
.Exception;
59
public void backup() throws
SQLite
.Exception {
69
public int remaining() throws
SQLite
.Exception
[
all
...]
Trace.java
1
package
SQLite
;
4
* Callback interface for
SQLite
's trace function.
ProgressHandler.java
1
package
SQLite
;
4
* Callback interface for
SQLite
's user defined progress handler.
10
* Invoked for N
SQLite
VM opcodes.
Vm.java
1
package
SQLite
;
4
* Class to represent compiled
SQLite
VM.
10
* Internal handle for the compiled
SQLite
VM.
22
* Perform one step on compiled
SQLite
VM.
38
* } catch (
SQLite
.Exception e) {
47
public native boolean step(Callback cb) throws
SQLite
.Exception;
50
* Compile the next SQL statement for the
SQLite
VM instance.
55
public native boolean compile() throws
SQLite
.Exception;
58
* Abort the compiled
SQLite
VM.
61
public native void stop() throws
SQLite
.Exception
[
all
...]
Profile.java
1
package
SQLite
;
4
* Callback interface for
SQLite
's profile function.
Database.java
1
package
SQLite
;
4
* Main class wrapping an
SQLite
database.
10
* Internal handle for the native
SQLite
API.
22
* Open an
SQLite
database file.
28
public void open(String filename, int mode) throws
SQLite
.Exception {
30
mode =
SQLite
.Constants.SQLITE_OPEN_READWRITE |
31
SQLite
.Constants.SQLITE_OPEN_CREATE;
33
mode =
SQLite
.Constants.SQLITE_OPEN_READONLY;
38
} catch (
SQLite
.Exception se) {
49
* Open an
SQLite
database file
[
all
...]
BusyHandler.java
1
package
SQLite
;
4
* Callback interface for
SQLite
's user defined busy handler.
Function.java
1
package
SQLite
;
4
* Callback interface for
SQLite
's user defined functions.
12
* class SinFunc implements
SQLite
.Function {
13
* public void function(
SQLite
.FunctionContext fc, String args[]) {
23
*
SQLite
.Database db = new
SQLite
.Database();
/external/chromium_org/third_party/sqlite/src/ext/
README.txt
1
Version loadable extensions to
SQLite
are found in subfolders
/external/chromium_org/third_party/sqlite/src/ext/fts1/
README.txt
2
extension for
SQLite
.
/libcore/luni/src/test/resources/
connection.properties
1
sqlDriver =
SQLite
.JDBCDriver
5
sqlUrlPrefix = jdbc:
sqlite
:
/external/chromium_org/components/test/data/web_database/
OWNERS
4
# For
sqlite
stuff:
/external/chromium_org/components/webdata/
OWNERS
4
# For
sqlite
stuff:
/external/chromium_org/third_party/sqlite/amalgamation/
README
3
These files are automatically generated from the
sqlite
originals. If
5
the
sqlite
code.
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
SQLiteMap.java
8
return "org.
sqlite
.JDBC";
12
return "jdbc:
sqlite
::memory:";
/frameworks/base/core/jni/
android_database_SQLiteCommon.cpp
38
// get the error code and message from the
SQLite
connection
41
// error code that
SQLite
normally returns.
66
exceptionClass = "android/database/
sqlite
/SQLiteDiskIOException";
70
exceptionClass = "android/database/
sqlite
/SQLiteDatabaseCorruptException";
73
exceptionClass = "android/database/
sqlite
/SQLiteConstraintException";
76
exceptionClass = "android/database/
sqlite
/SQLiteAbortException";
79
exceptionClass = "android/database/
sqlite
/SQLiteDoneException";
80
sqlite3Message = NULL; //
SQLite
error message is irrelevant in this case
83
exceptionClass = "android/database/
sqlite
/SQLiteFullException";
86
exceptionClass = "android/database/
sqlite
/SQLiteMisuseException"
[
all
...]
/external/chromium_org/third_party/sqlite/src/
publish.sh
3
# This script is used to compile
SQLite
and package everything up
4
# so that it is ready to move to the
SQLite
website.
23
# Start by building an
sqlite
shell for linux.
37
# Build the
sqlite
.so and tclsqlite.so shared libraries
55
mv sqlite3.so
sqlite
-$VERS.so
56
gzip
sqlite
-$VERS.so
57
mv
sqlite
-$VERS.so.gz doc
69
# Build the
sqlite
.exe executable for windows.
75
zip doc/
sqlite
-$VERSW.zip sqlite3.exe
83
rm -f ../doc/
sqlite
-source-$VERSW.zi
[
all
...]
spec.template
1
%define name
sqlite
6
Summary:
SQLite
is a C library that implements an embeddable SQL database engine
11
URL: http://www.
sqlite
.org/
16
SQLite
is a software library that implements a self-contained, serverless,
18
Programs that link with the
SQLite
library can have SQL database access
20
standalone command-line access program (
sqlite
) that can be used to
21
administer an
SQLite
database and which serves as an example of how to
22
use the
SQLite
library.
25
Summary: Header files and libraries for developing apps which will use
sqlite
30
The
sqlite
-devel package contains the header files and libraries neede
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
README.txt
2
extension for
SQLite
. While the API is the same, this version uses a
/external/chromium_org/third_party/sqlite/src/ext/fts3/
README.txt
2
extension for
SQLite
. While the API is the same, this version uses a
Completed in 398 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>