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

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
AbstractSQLTransactionBackend.h 52 virtual void executeSQL(PassOwnPtrWillBeRawPtr<AbstractSQLStatement>, const String& statement,
SQLTransactionBackendSync.h 58 PassRefPtrWillBeRawPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionState&);
InspectorDatabaseAgent.h 68 virtual void executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtr<ExecuteSQLCallback>) OVERRIDE;
SQLTransaction.h 63 void executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments,
SQLTransactionBackend.h 85 virtual void executeSQL(PassOwnPtrWillBeRawPtr<AbstractSQLStatement>, const String& statement,
SQLTransaction.cpp 266 void SQLTransaction::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, PassOwnPtr<SQLStatementCallback> callback, PassOwnPtr<SQLStatementErrorCallback> callbackError, ExceptionState& exceptionState)
285 m_backend->executeSQL(statement.release(), sqlStatement, arguments, permissions);
InspectorDatabaseAgent.cpp 146 transaction->executeSQL(m_sqlStatement, sqlValues, callback.release(), errorCallback.release(), IGNORE_EXCEPTION);
278 void InspectorDatabaseAgent::executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtr<ExecuteSQLCallback> prpRequestCallback)
SQLTransactionBackendSync.cpp 86 PassRefPtrWillBeRawPtr<SQLResultSet> SQLTransactionBackendSync::executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionState& exceptionState)
93 m_database->setLastErrorMessage("cannot executeSQL because the database is not open");
99 m_database->setLastErrorMessage("cannot executeSQL because there is a version mismatch");
SQLTransactionBackend.cpp 529 void SQLTransactionBackend::executeSQL(PassOwnPtrWillBeRawPtr<AbstractSQLStatement> statement,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SQLTransactionSyncCustom.cpp 49 ExceptionState exceptionState(ExceptionState::ExecutionContext, "executeSql", "SQLTransactionSync", info.Holder(), info.GetIsolate());
94 v8::Handle<v8::Value> result = toV8(transaction->executeSQL(statement, sqlValues, exceptionState), info.Holder(), info.GetIsolate());
V8SQLTransactionCustom.cpp 50 ExceptionState exceptionState(ExceptionState::ExecutionContext, "executeSql", "SQLTransaction", info.Holder(), info.GetIsolate());
114 transaction->executeSQL(statement, sqlValues, callback.release(), errorCallback.release(), exceptionState);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Database.js 104 executeSql: function(query, onSuccess, onError)
131 this._model._agent.executeSQL(this._id, query, callback);

Completed in 354 milliseconds