/external/javasqlite/src/main/java/SQLite/ |
Trace.java | 10 * Callback to trace (ie log) one SQL statement. 12 * @param stmt SQL statement string
|
Profile.java | 10 * Callback to profile (ie log) one SQL statement 13 * @param stmt SQL statement string
|
/libcore/luni/src/main/java/java/sql/ |
Types.java | 18 package java.sql; 21 * A class which defines constants used to identify generic SQL types, also 34 * The type code that identifies the SQL type {@code ARRAY}. 39 * The type code that identifies the SQL type {@code BIGINT}. 44 * The type code that identifies the SQL type {@code BINARY}. 49 * The type code that identifies the SQL type {@code BIT}. 54 * The type code that identifies the SQL type {@code BLOB}. 59 * The type code that identifies the SQL type {@code BOOLEAN}. 64 * The type code that identifies the SQL type {@code CHAR}. 69 * The type code that identifies the SQL type {@code CLOB} [all...] |
Struct.java | 18 package java.sql; 23 * An interface which provides facilities for manipulating an SQL structured type 24 * as a Java object. The {@code Struct} object has a value for each attribute of the SQL structured 30 * Gets the SQL Type name of the SQL structured type that this {@code 33 * @return the fully qualified name of SQL structured type. 40 * Gets the values of the attributes of this SQL structured type. This 53 * Gets the values of the attributes of this SQL structured type. This 54 * method uses the supplied type mapping to determine how to map SQL types 61 * a Map describing how SQL Type names are mapped to classes [all...] |
SQLInput.java | 18 package java.sql; 28 * an SQL structured type or SQL distinct type. 30 * This interface is used to define custom mappings of SQL <i>User Defined 37 * the {@code SQLData} interface, the JDBC driver determines the SQL type of the 51 * @return the next attribute. {@code null} if the value is SQL {@code NULL}. 63 * value is SQL {@code NULL}. 72 * @return the next attribute as a {@code byte}. 0 if the value is SQL 82 * @return the next attribute as a {@code short}. 0 if the value is SQL 92 * @return the next attribute as an {@code int}. 0 if the value is SQL [all...] |
/external/chromium/chrome/browser/diagnostics/ |
sqlite_diagnostics.h | 11 namespace sql { namespace 17 sql::ErrorDelegate* GetErrorHandlerForCookieDb(); 18 sql::ErrorDelegate* GetErrorHandlerForHistoryDb(); 19 sql::ErrorDelegate* GetErrorHandlerForThumbnailDb(); 20 sql::ErrorDelegate* GetErrorHandlerForTextDb(); 21 sql::ErrorDelegate* GetErrorHandlerForWebDb();
|
sqlite_diagnostics.cc | 7 #include "app/sql/connection.h" 8 #include "app/sql/diagnostic_error_delegate.h" 9 #include "app/sql/statement.h" 49 sql::Connection db; 55 sql::Statement s(db.GetUniqueStatement("PRAGMA integrity_check;")); 90 // Uniquifier to use the sql::DiagnosticErrorDelegate template which 109 sql::ErrorDelegate* GetErrorHandlerForCookieDb() { 110 return new sql::DiagnosticErrorDelegate<HistogramUniquifier<0> >(); 113 sql::ErrorDelegate* GetErrorHandlerForHistoryDb() { 114 return new sql::DiagnosticErrorDelegate<HistogramUniquifier<1> >() [all...] |
/external/chromium/chrome/browser/history/ |
history_unittest_base.cc | 7 #include "app/sql/connection.h" 19 std::string sql; local 20 ASSERT_TRUE(file_util::ReadFileToString(sql_path, &sql)); 23 // SQL with the current time. 29 sql = ReplaceStringPlaceholders(sql, sql_time, NULL); 31 sql::Connection connection; 33 ASSERT_TRUE(connection.Execute(sql.c_str()));
|
archived_database.h | 9 #include "app/sql/connection.h" 10 #include "app/sql/init_status.h" 11 #include "app/sql/meta_table.h" 44 virtual sql::Connection& GetDB(); 53 sql::InitStatus EnsureCurrentVersion(); 56 sql::Connection db_; 57 sql::MetaTable meta_table_;
|
/external/chromium/chrome/browser/webdata/ |
web_database.h | 9 #include "app/sql/connection.h" 10 #include "app/sql/init_status.h" 11 #include "app/sql/meta_table.h" 30 sql::InitStatus Init(const FilePath& db_name); 43 sql::Connection* GetSQLConnection(); 48 sql::InitStatus MigrateOldVersionsAsNeeded(); 50 sql::Connection db_; 51 sql::MetaTable meta_table_;
|
web_database_table.h | 9 #include "app/sql/connection.h" 10 #include "app/sql/init_status.h" 11 #include "app/sql/meta_table.h" 17 explicit WebDatabaseTable(sql::Connection* db, sql::MetaTable* meta_table) 34 sql::Connection* db_; 35 sql::MetaTable* meta_table_;
|
/prebuilt/common/jython/ |
jython.jar | |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
EntrySchema.java | 99 private void logExecSql(SQLiteDatabase db, String sql) { 100 db.execSQL(sql); 300 StringBuilder sql = new StringBuilder("CREATE TABLE "); local 301 sql.append(tableName); 302 sql.append(" (_id INTEGER PRIMARY KEY AUTOINCREMENT"); 305 sql.append(','); 306 sql.append(column.name); 307 sql.append(' '); 308 sql.append(SQLITE_TYPES[column.type]); 310 sql.append(" DEFAULT ") 414 StringBuilder sql = new StringBuilder("DROP TABLE IF EXISTS "); local 431 StringBuilder sql = new StringBuilder("DELETE FROM "); local [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_Connection1.java | 18 package org.apache.harmony.sql.tests.java.sql; 20 import java.sql.Array; 21 import java.sql.Blob; 22 import java.sql.CallableStatement; 23 import java.sql.Clob; 24 import java.sql.Connection; 25 import java.sql.DatabaseMetaData; 26 import java.sql.NClob; 27 import java.sql.PreparedStatement [all...] |
TestHelper_Driver2.java | 18 package org.apache.harmony.sql.tests.java.sql; 20 import java.sql.Driver; 21 import java.sql.DriverManager; 22 import java.sql.SQLException;
|
TestHelper_Driver5.java | 18 package org.apache.harmony.sql.tests.java.sql; 20 import java.sql.Driver; 21 import java.sql.DriverManager; 22 import java.sql.SQLException;
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/ |
Impl_PooledConnection.java | 18 package org.apache.harmony.sql.tests.javax.sql; 20 import java.sql.Connection; 21 import java.sql.SQLException; 22 import javax.sql.ConnectionEventListener; 23 import javax.sql.PooledConnection; 24 import javax.sql.StatementEventListener;
|
StatementEventTest.java | 18 package org.apache.harmony.sql.tests.javax.sql; 21 import java.sql.SQLException; 23 import javax.sql.PooledConnection; 24 import javax.sql.StatementEvent; 32 * Test class for javax.sql.StatementEvent. 43 * @tests {@link javax.sql.StatementEvent#StatementEvent(PooledConnection, java.sql.PreparedStatement)} 54 * @tests {@link javax.sql.StatementEvent#StatementEvent(PooledConnection, java.sql.PreparedStatement) [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCResultSetMetaData.java | 3 import java.sql.*; 5 public class JDBCResultSetMetaData implements java.sql.ResultSetMetaData { 13 public String getCatalogName(int column) throws java.sql.SQLException { 17 public String getColumnClassName(int column) throws java.sql.SQLException { 31 case Types.DATE: return "java.sql.Date"; 32 case Types.TIME: return "java.sql.Time"; 33 case Types.TIMESTAMP: return "java.sql.Timestamp"; 44 public int getColumnCount() throws java.sql.SQLException { 51 public int getColumnDisplaySize(int column) throws java.sql.SQLException { 55 public String getColumnLabel(int column) throws java.sql.SQLException [all...] |
/external/webkit/LayoutTests/storage/ |
sql-data-types.html | 3 <script type="text/javascript" src="sql-data-types.js"></script>
|
/libcore/luni/src/test/java/tests/java/sql/ |
StressTest.java | 17 package tests.java.sql; 19 import java.sql.Connection; 20 import java.sql.DatabaseMetaData; 21 import java.sql.Driver; 22 import java.sql.PreparedStatement; 23 import java.sql.ResultSet; 24 import java.sql.SQLException; 25 import java.sql.Statement; 70 } catch (SQLException sql) { 71 fail("Unexpected SQLException " + sql.toString()) [all...] |
/frameworks/base/docs/html/sdk/api_diff/9/changes/ |
java.sql.ResultSet.html | 10 java.sql.ResultSet 74 Interface java.sql.<A HREF="../../../../reference/java/sql/ResultSet.html" target="_top"><font size="+2"><code>ResultSet</code></font></A> 76 <p><font xsize="+1">Added interface <code>java.sql.Wrapper</code>.<br></font> 87 <A NAME="java.sql.ResultSet.getHoldability_added()"></A> 88 <nobr><code>int</code> <A HREF="../../../../reference/java/sql/ResultSet.html#getHoldability()" target="_top"><code>getHoldability</code></A>()</nobr> 94 <A NAME="java.sql.ResultSet.getNCharacterStream_added(int)"></A> 95 <nobr><code>Reader</code> <A HREF="../../../../reference/java/sql/ResultSet.html#getNCharacterStream(int)" target="_top"><code>getNCharacterStream</code></A>(<code>int</code>)</nobr> 101 <A NAME="java.sql.ResultSet.getNCharacterStream_added(java.lang.String)"></A> 102 <nobr><code>Reader</code> <A HREF="../../../../reference/java/sql/ResultSet.html#getNCharacterStream(java.lang.String)" target="_top"><code>getNCharacterStream</cod (…) [all...] |
javax.sql.RowSet.html | 10 javax.sql.RowSet 74 Interface javax.sql.<A HREF="../../../../reference/javax/sql/RowSet.html" target="_top"><font size="+2"><code>RowSet</code></font></A> 86 <A NAME="javax.sql.RowSet.setAsciiStream_added(int, java.io.InputStream)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/javax/sql/RowSet.html#setAsciiStream(int, java.io.InputStream)" target="_top"><code>setAsciiStream</code></A>(<code>int,</nobr> InputStream<nobr><nobr></code>)</nobr> 93 <A NAME="javax.sql.RowSet.setAsciiStream_added(java.lang.String, java.io.InputStream)"></A> 94 <nobr><code>void</code> <A HREF="../../../../reference/javax/sql/RowSet.html#setAsciiStream(java.lang.String, java.io.InputStream)" target="_top"><code>setAsciiStream</code></A>(<code>String,</nobr> InputStream<nobr><nobr></code>)</nobr> 100 <A NAME="javax.sql.RowSet.setAsciiStream_added(java.lang.String, java.io.InputStream, int)"></A> 101 <nobr><code>void</code> <A HREF="../../../../reference/javax/sql/RowSet.html#setAsciiStream(java.lang.String, java.io.InputStream, int)" target="_top"><code>setAsciiStream</code></A>(<code>String,</nobr> InputStream<nobr>,</nobr> int<nobr><nobr></code>)</nobr> 107 <A NAME="javax.sql.RowSet.setBigDecimal_added(java.lang.String, java.math.BigDecimal)"></A [all...] |
/libcore/luni/src/test/java/libcore/javax/sql/ |
OldConnectionEventTest.java | 18 package libcore.javax.sql; 20 import java.sql.Connection; 21 import java.sql.SQLException; 22 import javax.sql.ConnectionEvent; 23 import javax.sql.ConnectionEventListener; 24 import javax.sql.PooledConnection; 25 import javax.sql.StatementEventListener;
|
/external/chromium/app/sql/ |
transaction_unittest.cc | 5 #include "app/sql/connection.h" 6 #include "app/sql/statement.h" 7 #include "app/sql/transaction.h" 29 sql::Connection& db() { return db_; } 33 sql::Statement count(db().GetUniqueStatement("SELECT count(*) FROM foo")); 40 sql::Connection db_; 45 sql::Transaction t(&db()); 63 sql::Transaction t(&db()); 75 sql::Transaction t2(&db()); 93 sql::Transaction outer(&db()) [all...] |