HomeSort by relevance Sort by last modified time
    Searched full:jdbc (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
SQLiteMap.java 8 return "org.sqlite.JDBC";
12 return "jdbc:sqlite::memory:";
H2Map.java 18 return "jdbc:h2:mem:";
  /libcore/luni/src/test/resources/
connection.properties 5 sqlUrlPrefix = jdbc:sqlite:
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 31 * Provides facilities for managing JDBC drivers. The <code>android.database</code> and
35 * <p>Note that Android does not include any JDBC drivers by default; you must provide your own.
37 * <p>The {@code DriverManager} class loads JDBC drivers during its initialization,
39 * "jdbc.drivers"}.
71 * Loads the set of JDBC drivers defined by the Property "jdbc.drivers" if
75 String theDriverList = System.getProperty("jdbc.drivers", null);
114 * the JDBC driver to remove.
125 throw new SecurityException("calling class not authorized to deregister JDBC driver");
248 * Returns an {@code Enumeration} that contains all of the loaded JDBC
    [all...]
CallableStatement.java 30 * The JDBC API provides an SQL escape syntax allowing <i>Stored Procedures</i>
31 * to be called in a standard way for all databases. The JDBC escape syntax has
60 * Gets the value of a specified JDBC {@code ARRAY} parameter as a
73 * Gets the value of a specified JDBC {@code ARRAY} parameter as a {@code
85 * Returns a new {@link BigDecimal} representation of the JDBC {@code
100 * Returns a new {@link BigDecimal} representation of the JDBC {@code
121 * Returns a new {@link BigDecimal} representation of the JDBC {@code
135 * Gets the value of a specified JDBC {@code BLOB} parameter as a {@code
150 * Gets the value of a specified JDBC {@code BLOB} parameter as a {@code
164 * Gets the value of a specified JDBC {@code BIT} parameter as a boolean
    [all...]
Driver.java 23 * An interface to a JDBC driver. Instances are returned by {@link DriverManager}.
25 * <p>The JDBC driver uses URLs to specify the location of specific data. URL
109 * Reports whether this driver is a genuine JDBC CompliantTM driver. The
110 * driver may only return {@code true} if it passes all the JDBC compliance
116 * @return {@code true} if the driver is fully JDBC compliant, {@code false}
Time.java 24 * format and parse the time's representation as a String in JDBC escape format.
178 * Formats the {@code Time} as a String in JDBC escape format: {@code
181 * @return A String representing the {@code Time} value in JDBC escape
212 * JDBC escape format: {@code hh:mm:ss}.
217 * A String representing the time value in JDBC escape format:
222 * if the supplied time string is not in JDBC escape format.
Struct.java 43 * which matches this structured type, the JDBC driver uses the standard
57 * structured type, the JDBC driver uses the default mapping. The {@code
Wrapper.java 21 * This class is an actual usage of the wrapper pattern for JDBC classes.
  /libcore/luni/src/test/java/libcore/java/sql/
DriverTest.java 30 public static final String SQLITE_JDBC_URL = "jdbc:sqlite:/only_used_at_connect_time";
67 // The SQLite JDBC driver used by these tests is not actually JDBC compliant.
ConnectionTest.java 64 connectionURL = "jdbc:sqlite:/" + dbFile.getPath();
OldDriverPropertyInfoTest.java 30 static final String connectionURL = "jdbc:sqlite:/" + "Test.db";
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver2.java 25 * Basic JDBC driver implementation to help with tests
45 baseURL = "jdbc:mikes2";
TestHelper_Driver5.java 25 * Basic JDBC driver implementation to help with tests
40 baseURL = "jdbc:mikes5";
DriverManagerTest.java 60 static String baseURL1 = "jdbc:mikes1";
62 static String baseURL4 = "jdbc:mikes4";
64 static final String JDBC_PROPERTY = "jdbc.drivers";
145 static String validConnectionURL = "jdbc:mikes1:data1";
148 static String invalidConnectionURL1 = "jdbc:mikes1:data2";
200 String validURL1 = "jdbc:mikes1:data2";
204 String invalidURL2 = "jdbc:mikes1:crazyone";
243 String validURL1 = "jdbc:mikes1:data2";
279 static String validURL1 = "jdbc:mikes1";
281 static String validURL2 = "jdbc:mikes2"
    [all...]
TestHelper_Driver3.java 31 baseURL = "jdbc:mikes3";
TestHelper_Driver1.java 28 * A simple implementation of a class implementing a JDBC Driver, for use in the
36 String baseURL = "jdbc:mikes1";
TestHelper_Driver4.java 28 * Basic JDBC driver implementation to help with tests
50 baseURL = "jdbc:mikes4";
  /external/javasqlite/
Android.mk 10 LOCAL_MODULE := sqlite-jdbc
32 LOCAL_MODULE := sqlite-jdbc-host
  /external/robolectric/
Android.mk 35 robolectric-sqlite-jdbc \
60 robolectric-sqlite-jdbc:lib/main/sqlite-jdbc-3.7.2.jar \
build.gradle 21 compile files('lib/main/sqlite-jdbc-3.7.2.jar')
  /libcore/luni/src/main/java/javax/sql/
DataSource.java 34 * JDBC driver. There are three variants of the {@code DataSource} interface,
49 * Note that a JDBC driver which is accessed via the {@code DataSource}
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H2MapTest.java 31 assertThat(map.getConnectionString(), equalTo("jdbc:h2:mem:"));
  /libcore/dalvik/src/main/java/dalvik/annotation/
TestTarget.java 46 * has to be tested with different aspects. Areas concerned are e.g. JDBC
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteCursor.java 17 * Simulates an Android Cursor object, by wrapping a JDBC ResultSet.
196 * Allows test cases access to the underlying JDBC ResultSet, for use in
206 * Allows test cases access to the underlying JDBC ResultSetMetaData, for use in

Completed in 1038 milliseconds

1 2 3