/libcore/luni/src/test/java/tests/sql/ |
SQLTest.java | 17 package tests.sql; 25 import java.sql.Connection; 26 import java.sql.DriverManager; 27 import java.sql.ResultSet; 28 import java.sql.SQLException; 29 import java.sql.Statement;
|
StructTest.java | 17 package tests.sql; 25 import java.sql.Struct; 32 * Test method for {@link java.sql.Struct#getSQLTypeName()}. 46 * Test method for {@link java.sql.Struct#getAttributes()}. 60 * Test method for {@link java.sql.Struct#getAttributes(java.util.Map)}.
|
SQLOutputTest.java | 17 package tests.sql; 29 import java.sql.Array; 30 import java.sql.Blob; 31 import java.sql.Clob; 32 import java.sql.Date; 33 import java.sql.Ref; 34 import java.sql.SQLData; 35 import java.sql.SQLOutput; 36 import java.sql.Struct; 37 import java.sql.Time [all...] |
RefTest.java | 17 package tests.sql; 25 import java.sql.Ref; 36 * Test method for {@link java.sql.Ref#getBaseTypeName()}. 49 * Test method for {@link java.sql.Ref#getObject()}. 62 * Test method for {@link java.sql.Ref#getObject(java.util.Map)}. 75 * Test method for {@link java.sql.Ref#setObject(java.lang.Object)}.
|
/libcore/sqlite-jdbc/src/main/java/SQLite/ |
Database.java | 164 * Execute an SQL statement and invoke callback methods 171 * @param sql the SQL statement to be executed 175 public void exec(String sql, SQLite.Callback cb) throws SQLite.Exception { 177 _exec(sql, cb); 181 private native void _exec(String sql, SQLite.Callback cb) 185 * Execute an SQL statement and invoke callback methods 202 * @param sql the SQL statement to be executed 204 * @param args arguments for the SQL statement, '%q' substitutio [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteProgram.java | 37 /** The SQL used to create this query */ 49 * the SQLiteCompiledSql object for the given sql statement. 61 /* package */ SQLiteProgram(SQLiteDatabase db, String sql) { 63 mSql = sql.trim(); 73 mCompiledSql = new SQLiteCompiledSql(db, sql); 80 mCompiledSql = db.getCompiledStatementForSql(sql); 82 // create a new compiled-sql obj 83 mCompiledSql = new SQLiteCompiledSql(db, sql); 89 db.addToCompiledQueries(sql, mCompiledSql); 92 ") for sql: " + sql) [all...] |
SQLiteContentHelper.java | 39 * @param sql SQL query, possibly with query arguments. 46 public static AssetFileDescriptor getBlobColumnAsAssetFile(SQLiteDatabase db, String sql, 49 MemoryFile file = simpleQueryForBlobMemoryFile(db, sql, selectionArgs); 69 private static MemoryFile simpleQueryForBlobMemoryFile(SQLiteDatabase db, String sql, 71 Cursor cursor = db.rawQuery(sql, selectionArgs);
|
SQLiteDatabase.java | 56 * <p>SQLiteDatabase has methods to create, delete, execute SQL commands, and 221 // logged together with the most recently executed SQL statement, 259 * key = sql statement with "?" for bind args 262 * there will not be an overhead of compilation of sql statements by sqlite. 270 * most of the apps don't use "?" syntax in their sql, caching is not useful for them. 1232 String sql = SQLiteQueryBuilder.buildQueryString( local 1530 StringBuilder sql = new StringBuilder(152); local 1677 StringBuilder sql = new StringBuilder(120); local [all...] |
/external/jsr305/sampleUses/src/main/java/java/sql/ |
ResultSetConcurrency.java | 1 package java.sql;
|
ResultSetHoldability.java | 1 package java.sql;
|
ResultSetType.java | 1 package java.sql;
|
/libcore/luni/src/main/java/java/sql/ |
Driver.java | 18 package java.sql;
|
DriverPropertyInfo.java | 18 package java.sql;
|
Ref.java | 18 package java.sql; 23 * This interface represents an SQL Ref - a data object containing a cursor 39 * Gets the fully-qualified SQL name of the SQL structured type that this 42 * @return the fully qualified name of the SQL structured type. 49 * Gets the SQL structured type instance referenced by this {@code Ref}. 51 * @return a Java object whose type is defined by the mapping for the SQL 64 * @return a Java object whose type is defined by the mapping for the SQL 76 * the {@code Object} representing the new SQL structured type
|
SQLPermission.java | 18 package java.sql; 25 * A Permission relating to security access control in the {@code java.sql}
|
ParameterMetaData.java | 18 package java.sql; 71 * between SQL types and Java objects. 106 * Gets the SQL type of a specified parameter. 111 * @return the SQL type of the parameter as defined in {@code 112 * java.sql.Types}.
|
Types.java | 18 package java.sql; 21 * A class which defines constants used to identify generic SQL types, also 35 * The type code that identifies the SQL type {@code ARRAY}. 40 * The type code that identifies the SQL type {@code BIGINT}. 45 * The type code that identifies the SQL type {@code BINARY}. 50 * The type code that identifies the SQL type {@code BIT}. 55 * The type code that identifies the SQL type {@code BLOB}. 60 * The type code that identifies the SQL type {@code BOOLEAN}. 65 * The type code that identifies the SQL type {@code CHAR}. 70 * The type code that identifies the SQL type {@code CLOB} [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-85721.js | 80 str='<sql:connection id="conn1"> <sql:url>www.m.com</sql:url> <sql:driver>drive.class</sql:driver>\n<sql:userId>foo</sql:userId> <sql:password>goo</sql:password> </sql:connection>' [all...] |
/libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/ |
JDBCConnection.java | 3 import java.sql.*; 7 implements java.sql.Connection, SQLite.BusyHandler { 272 public String nativeSQL(String sql) throws SQLException { 276 public CallableStatement prepareCall(String sql) throws SQLException { 280 public CallableStatement prepareCall(String sql, int x, int y) 285 public PreparedStatement prepareStatement(String sql) throws SQLException { 286 JDBCPreparedStatement s = new JDBCPreparedStatement(this, sql); 290 public PreparedStatement prepareStatement(String sql, int resultSetType, 302 JDBCPreparedStatement s = new JDBCPreparedStatement(this, sql); 431 public PreparedStatement prepareStatement(String sql, int resultSetType [all...] |