OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SQLite
(Results
26 - 43
of
43
) sorted by null
1
2
/libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCStatement.java
1
package
SQLite
.JDBC2z;
87
SQLite
.TableResult tr = null;
118
} catch (
SQLite
.Exception e) {
120
conn.db.last_error() ==
SQLite
.Constants.SQLITE_BUSY &&
127
} catch (
SQLite
.Exception ee) {
JDBCResultSet.java
1
package
SQLite
.JDBC2z;
16
protected
SQLite
.TableResult tr;
72
SQLite
.Database.version().compareTo("2.5.0") < 0;
74
public JDBCResultSet(
SQLite
.TableResult tr, JDBCStatement s) {
319
return new java.sql.Time(
SQLite
.Database.long_from_julian(lastg));
327
return new java.sql.Time(
SQLite
.Database.long_from_julian(lastg));
368
return new java.sql.Timestamp(
SQLite
.Database.long_from_julian(lastg));
376
return new java.sql.Timestamp(
SQLite
.Database.long_from_julian(lastg));
419
return new java.sql.Date(
SQLite
.Database.long_from_julian(lastg));
427
return new java.sql.Date(
SQLite
.Database.long_from_julian(lastg))
[
all
...]
JDBCPreparedStatement.java
1
package
SQLite
.JDBC2z;
29
SQLite
.Database.version().compareTo("2.5.0") < 0;
222
args[parameterIndex - 1] =
SQLite
.StringEncoder.encodeX(x);
225
args[parameterIndex - 1] =
SQLite
.StringEncoder.encode(x);
239
args[parameterIndex - 1] = java.lang.Double.toString(
SQLite
.Database.julian_from_long(x.getTime()));
256
args[parameterIndex - 1] = java.lang.Double.toString(
SQLite
.Database.julian_from_long(x.getTime()));
273
args[parameterIndex - 1] = java.lang.Double.toString(
SQLite
.Database.julian_from_long(x.getTime()));
322
SQLite
.StringEncoder.encodeX(bx);
326
args[parameterIndex - 1] =
SQLite
.StringEncoder.encode(bx);
346
SQLite
.StringEncoder.encodeX(bx)
[
all
...]
JDBCResultSetMetaData.java
1
package
SQLite
.JDBC2z;
/libcore/luni/src/test/java/tests/SQLite/
JDBCDriverTest.java
17
package tests.
SQLite
;
19
import
SQLite
.Exception;
20
import
SQLite
.JDBCDriver;
37
* The
SQLite
db file.
86
// we have to list the Driver target explicitly, since
SQLite
118
// we have to list the Driver target explicitly, since
SQLite
153
// we have to list the Driver target explicitly, since
SQLite
182
// we have to list the Driver target explicitly, since
SQLite
210
// we have to list the Driver target explicitly, since
SQLite
248
// we have to list the Driver target explicitly, since
SQLite
[
all
...]
SQLiteTest.java
17
package tests.
SQLite
;
43
Class.forName("
SQLite
.JDBCDriver").newInstance();
48
conn = DriverManager.getConnection("jdbc:
sqlite
:/"
DatabaseTest.java
17
package tests.
SQLite
;
41
import
SQLite
.Authorizer;
42
import
SQLite
.Blob;
43
import
SQLite
.BusyHandler;
44
import
SQLite
.Callback;
45
import
SQLite
.Constants;
46
import
SQLite
.Database;
47
import
SQLite
.Exception;
48
import
SQLite
.Function;
49
import
SQLite
.FunctionContext
[
all
...]
StmtTest.java
17
package tests.
SQLite
;
19
import
SQLite
.Constants;
20
import
SQLite
.Database;
21
import
SQLite
.Exception;
22
import
SQLite
.Stmt;
23
import
SQLite
.TableResult;
476
assertEquals("Double.NEGATIVE_INFINITY
SQLite
representation",
480
assertEquals("Double.POSITIVE_INFINITY
SQLite
representation",
484
assertEquals("Double.Nan
SQLite
representation", "Inf", row5[0]);
[
all
...]
/libcore/sqlite-jdbc/src/main/java/SQLite/
TableResult.java
1
package
SQLite
;
6
* Class representing an
SQLite
result set as
15
*
SQLite
.Database db = new
SQLite
.Database();
JDBCDriver.java
1
package
SQLite
;
32
cvers = "
SQLite
.JDBC1.JDBCConnection";
34
cvers = "
SQLite
.JDBC2.JDBCConnection";
36
cvers = "
SQLite
.JDBC2x.JDBCConnection";
38
cvers = "
SQLite
.JDBC2y.JDBCConnection";
42
cvers = "
SQLite
.JDBC2x.JDBCConnection";
45
cvers = "
SQLite
.JDBC2z.JDBCConnection";
49
cvers = "
SQLite
.JDBC2y.JDBCConnection";
53
cvers = "
SQLite
.JDBC2x.JDBCConnection";
62
java.lang.System.getProperty("
SQLite
.sharedcache")
[
all
...]
Blob.java
1
package
SQLite
;
7
*
SQLite
3.4.0 incremental blob I/O interface.
149
*
SQLite
3.4.0 incremental blob I/O interface.
Constants.java
3
package
SQLite
;
6
* Container for
SQLite
constants.
10
* perl -ne '$_ =~ s/#define\s+(
SQLITE
\S+)\s+([0-9x]+)/ public static final int $1 = $2;/ && print $_;' external/
sqlite
/dist/sqlite3.h
19
public static final int SQLITE_INTERNAL = 2; /* Internal logic error in
SQLite
*/
StringEncoder.java
1
package
SQLite
;
4
* String encoder/decoder for
SQLite
.
9
* author in the source code of the
SQLite
distribution.
25
* the
SQLite
database. The database cannot handle null (0x00) and
/libcore/luni/src/test/java/tests/
AllTests.java
51
suite.addTest(tests.
SQLite
.AllTests.suite());
/libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverPropertyInfoTest.java
20
import
SQLite
.JDBCDriver;
87
String connectionURL = "jdbc:
sqlite
:/" + "Test.db";
89
String classname = "
SQLite
.JDBCDriver";
/libcore/luni/src/test/java/tests/java/sql/
QueryTimeoutTest.java
20
import
SQLite
.Database;
21
import
SQLite
.Function;
22
import
SQLite
.FunctionContext;
667
static class Delay implements
SQLite
.Function {
/external/sqlite/dist/
sqlite3.c
2
** This file is an amalgamation of many separate C source files from
SQLite
7
** of 5% are more are commonly seen when
SQLite
is compiled as a single
10
** This file is all you need to compile
SQLite
. To use
SQLite
in other
12
** the programming interface to the
SQLite
library. (If you do not have
16
** if you want a wrapper to interface
SQLite
with your choice of programming
18
** separate file. This file contains only code for the core
SQLite
library.
40
** Internal interface definitions for
SQLite
.
95
** This file defines various limits of what
SQLite
can process.
215
** incompatible with an
SQLite
library compiled with a different limit. I
[
all
...]
sqlite3.c.orig
2
** This file is an amalgamation of many separate C source files from
SQLite
7
** of 5% are more are commonly seen when
SQLite
is compiled as a single
10
** This file is all you need to compile
SQLite
. To use
SQLite
in other
12
** the programming interface to the
SQLite
library. (If you do not have
16
** if you want a wrapper to interface
SQLite
with your choice of programming
18
** separate file. This file contains only code for the core
SQLite
library.
40
** Internal interface definitions for
SQLite
.
95
** This file defines various limits of what
SQLite
can process.
215
** incompatible with an
SQLite
library compiled with a different limit. I
[
all
...]
Completed in 901 milliseconds
1
2