HomeSort by relevance Sort by last modified time
    Searched refs:executeSql (Results 1 - 19 of 19) sorted by null

  /external/webkit/Source/WebCore/storage/
SQLTransactionSync.idl 38 [Custom] SQLResultSet executeSql(in DOMString sqlStatement, in ObjectArray arguments);
SQLTransaction.idl 36 [Custom] void executeSql(in DOMString sqlStatement, in ObjectArray arguments, in SQLStatementCallback callback, in SQLStatementErrorCallback errorCallback);
  /external/webkit/LayoutTests/storage/
sql-error-codes.js 44 tx.executeSql("BAD STATEMENT", [], null, function(tx, error) { return true; });
50 testTransaction(db, function(tx) { tx.executeSql("BAD STATEMENT"); }, "SYNTAX_ERR");
57 tx.executeSql("CREATE TABLE IF NOT EXISTS BadBindNumberTest (Foo INT, Bar INT)");
58 tx.executeSql("INSERT INTO BadBindNumberTest VALUES (?, ?)", [1]);
68 tx.executeSql("CREATE TABLE IF NOT EXISTS BadBindTypeTest (Foo TEXT)");
69 tx.executeSql("INSERT INTO BadBindTypeTest VALUES (?)", [badString]);
77 tx.executeSql("CREATE TABLE IF NOT EXISTS QuotaTest (Foo BLOB)");
78 tx.executeSql("INSERT INTO QuotaTest VALUES (ZEROBLOB(10 * 1024 * 1024))");
97 tx.executeSql("THIS STATEMENT SHOULD NEVER GET EXECUTED");
execute-sql-args.js 47 eval('transaction.executeSql(' + parameterList + ')');
59 log("PASS. executeSql(" + parameterList + ") threw an exception as expected.");
61 log("*FAIL*. executeSql(" + parameterList + ") did not throw an exception");
64 log("*FAIL*. executeSql(" + parameterList + ") threw an exception: " + exception);
66 log("PASS. executeSql(" + parameterList + ") did not throw an exception");
84 var db = openDatabaseWithSuffix("ExecuteSQLArgsTest", "1.0", "Test of handling of the arguments to SQLTransaction.executeSql", 1);
multiple-databases-garbage-collection.js 31 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTest (randomData)", [], function(tx, result) {
33 tx.executeSql("INSERT INTO DataTest (randomData) VALUES (1)", []);
44 tx.executeSql("CREATE TABLE IF NOT EXISTS EmptyTable (unimportantData)", []);
sql-data-types.js 42 tx.executeSql("DROP TABLE DataTypeTestTable", [],
52 tx.executeSql("SELECT * FROM DataTypeTestTable", [],
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
open-database-while-transaction-in-progress.js 22 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo BLOB);");
23 tx.executeSql("INSERT INTO Test VALUES (ZEROBLOB(2097152));", [],
34 tx.executeSql("DELETE FROM Test;");
multiple-transactions-on-different-handles.js 34 tx.executeSql("SELECT COUNT(*) FROM Test;", [],
39 tx.executeSql("INSERT INTO Test VALUES (?);", [val],
60 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo int);", [],
change-version-handle-reuse.js 34 tx.executeSql("SELECT * from FooBar", [], function(tx) {
read-and-write-transactions-dont-run-together.js 37 tx.executeSql("SELECT * FROM Test;");
74 tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo int);");
test-authorizer.js 16 tx.executeSql("DROP TABLE IF EXISTS Test;");
17 tx.executeSql("DROP INDEX IF EXISTS TestIndex;");
18 tx.executeSql("DROP VIEW IF EXISTS TestView;");
19 tx.executeSql("DROP TRIGGER IF EXISTS TestTrigger;");
36 tx.executeSql(statement, [],
hash-change-with-xhr.js 40 transaction.executeSql(UPDATE_DATA, [], function() {}, errorHandler);
104 transaction.executeSql(CREATE_HEALTH_TABLE, [], function() {}, errorHandler);
  /external/webkit/Source/WebCore/bindings/js/
JSSQLTransactionSyncCustom.cpp 44 JSValue JSSQLTransactionSync::executeSql(ExecState* exec)
90 JSValue result = toJS(exec, globalObject(), WTF::getPtr(m_impl->executeSQL(sqlStatement, sqlValues, ec)));
JSSQLTransactionCustom.cpp 45 JSValue JSSQLTransaction::executeSql(ExecState* exec)
113 m_impl->executeSQL(sqlStatement, sqlValues, callback.release(), errorCallback.release(), ec);
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseTableView.js 54 this.database.executeSql("SELECT * FROM " + this.tableName, this._queryFinished.bind(this), this._queryError.bind(this));
Database.js 88 executeSql: function(query, onSuccess, onError)
102 DatabaseAgent.executeSQL(this._id, query, callback);
DatabaseQueryView.js 137 this.database.executeSql(query, this._queryFinished.bind(this, query), this._queryError.bind(this, query));
  /external/webkit/Tools/CSSTestSuiteHarness/harness/
harness.js     [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java     [all...]

Completed in 266 milliseconds