OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_transactionError
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/storage/
SQLTransaction.cpp
249
m_transactionError
= SQLError::create(SQLError::UNKNOWN_ERR, "unable to open a transaction, because the user deleted the database");
270
m_transactionError
= SQLError::create(SQLError::DATABASE_ERR, "unable to open a transaction to the database");
278
m_transactionError
= m_wrapper->sqlError();
279
if (!
m_transactionError
)
280
m_transactionError
= SQLError::create(SQLError::UNKNOWN_ERR, "unknown error occured setting up transaction");
305
m_transactionError
= SQLError::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception");
410
m_transactionError
= m_currentStatement->sqlError();
411
if (!
m_transactionError
)
412
m_transactionError
= SQLError::create(SQLError::DATABASE_ERR, "the statement failed to execute");
428
m_transactionError
= SQLError::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement (…)
[
all
...]
SQLTransaction.h
121
RefPtr<SQLError>
m_transactionError
;
Completed in 15 milliseconds