Searched refs:SQLError (Results 1 - 25 of 31) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLTransactionErrorCallback.idl32 boolean handleEvent(SQLError error);
H A DSQLStatementErrorCallback.idl32 [Custom] boolean handleEvent(SQLTransaction transaction, SQLError error);
H A DSQLStatementBackend.cpp36 #include "SQLError.h"
100 PassRefPtr<SQLError> SQLStatementBackend::sqlError() const
132 m_error = SQLError::create(SQLError::DATABASE_ERR, "could not prepare statement", result, "interrupted");
134 m_error = SQLError::create(SQLError::SYNTAX_ERR, "could not prepare statement", result, database->lastErrorMsg());
142 m_error = SQLError::create(db->isInterrupted() ? SQLError::DATABASE_ERR : SQLError::SYNTAX_ERR, "number of '?'s in statement string does not match argument count");
155 m_error = SQLError
[all...]
H A DSQLStatementErrorCallback.h39 class SQLError;
44 virtual bool handleEvent(SQLTransaction*, SQLError*) = 0;
H A DSQLTransactionErrorCallback.h38 class SQLError;
43 virtual bool handleEvent(SQLError*) = 0;
H A DSQLError.h39 class SQLError : public ThreadSafeRefCounted<SQLError> { class in namespace:WebCore
41 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); }
42 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode)
46 static PassRefPtr<SQLError> create(unsigned code, const char* message, int sqliteCode, const char* sqliteMessage)
66 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.isolatedCopy()) { } function in class:WebCore::SQLError
H A DChangeVersionWrapper.h38 class SQLError;
46 virtual SQLError* sqlError() const { return m_sqlError.get(); }
54 RefPtr<SQLError> m_sqlError;
H A DChangeVersionWrapper.cpp34 #include "SQLError.h"
55 m_sqlError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to read the current version",
61 m_sqlError = SQLError::create(SQLError::VERSION_ERR, "current version of the database and `oldVersion` argument do not match");
76 m_sqlError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to set new version in database",
H A DAbstractSQLStatementBackend.h31 #include "SQLError.h"
41 virtual PassRefPtr<SQLError> sqlError() const = 0;
H A DSQLError.idl34 ] interface SQLError {
H A DSQLStatementBackend.h44 class SQLError;
62 virtual PassRefPtr<SQLError> sqlError() const;
78 RefPtr<SQLError> m_error;
H A DSQLTransactionBackend.cpp44 #include "SQLError.h"
440 PassRefPtr<SQLError> SQLTransactionBackend::transactionError()
572 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "unable to open a transaction, because the user deleted the database");
593 m_transactionError = SQLError::create(SQLError::DATABASE_ERR, "unable to begin transaction",
604 m_transactionError = SQLError::create(SQLError::DATABASE_ERR, "unable to read version",
620 m_transactionError = SQLError::create(SQLError
[all...]
H A DAbstractSQLTransactionBackend.h32 #include "SQLError.h"
48 virtual PassRefPtr<SQLError> transactionError() = 0;
H A DSQLTransactionBackend.h46 class SQLError;
57 virtual SQLError* sqlError() const = 0;
81 virtual PassRefPtr<SQLError> transactionError() OVERRIDE;
120 RefPtr<SQLError> m_transactionError;
H A DSQLStatement.h45 class SQLError;
H A DSQLTransaction.h45 class SQLError;
103 RefPtr<SQLError> m_transactionError;
H A DDatabase.cpp48 #include "SQLError.h"
187 static void callTransactionErrorCallback(ScriptExecutionContext*, PassRefPtr<SQLTransactionErrorCallback> callback, PassRefPtr<SQLError> error)
201 RefPtr<SQLError> error = SQLError::create(SQLError::UNKNOWN_ERR, "database has been closed");
H A DSQLStatement.cpp85 RefPtr<SQLError> error = m_backend->sqlError();
H A DSQLTransaction.cpp40 #include "SQLError.h"
153 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception");
199 m_transactionError = SQLError::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement error callback did not return false");
/macosx-10.9.5/iodbc-42.5/iodbc/iodbcadm/
H A Derror.c94 if (SQLError (henv, hdbc, hstmt, sqlstate, NULL,
101 if (SQLError (henv, hdbc, SQL_NULL_HSTMT, sqlstate,
108 if (SQLError (henv, SQL_NULL_HDBC, SQL_NULL_HSTMT,
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSCustomSQLStatementErrorCallback.cpp44 bool JSSQLStatementErrorCallback::handleEvent(SQLTransaction* transaction, SQLError* error)
/macosx-10.9.5/iodbc-42.5/iodbc/iodbc/
H A Diodbc.exp46 SQLError
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorDatabaseAgent.cpp43 #include "SQLError.h"
66 void reportTransactionFailed(ExecuteSQLCallback* requestCallback, SQLError* error)
121 virtual bool handleEvent(SQLTransaction*, SQLError* error)
170 virtual bool handleEvent(SQLError* error)
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/include/private/
H A Dapr_dbd_odbc_v2.h56 SQLError( (type == SQL_HANDLE_ENV) ? h : NULL, \
/macosx-10.9.5/apr-30/apr-util/apr-util/include/private/
H A Dapr_dbd_odbc_v2.h56 SQLError( (type == SQL_HANDLE_ENV) ? h : NULL, \

Completed in 269 milliseconds

12