diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2014-09-26 16:26:22 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2014-09-26 16:27:53 +0200 |
commit | 325ce86b56131f1e874e8cb2c5948fed719afe07 (patch) | |
tree | df02290e7b87ed763949f191ba102d472af0acbc /connectivity/source | |
parent | b37a88c3080fc72f5f0ff9068bc71098be70ed11 (diff) |
fix build & better name for ERROR_INVALID_TABLE
Change-Id: Ic7253575859766f18869159e4a8dd6b3d715850d
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/parse/sqlbison.y | 2 | ||||
-rw-r--r-- | connectivity/source/parse/sqliterator.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y index 4d8039da219b..89b524c924d3 100644 --- a/connectivity/source/parse/sqlbison.y +++ b/connectivity/source/parse/sqlbison.y @@ -4329,7 +4329,7 @@ OUString OParseContext::getErrorMessage(ErrorCode _eCode) const case ERROR_INVALID_INT_COMPARE: aMsg = "The field can not be compared with a number."; break; case ERROR_INVALID_DATE_COMPARE: aMsg = "The field can not be compared with a date."; break; case ERROR_INVALID_REAL_COMPARE: aMsg = "The field can not be compared with a floating point number."; break; - case ERROR_INVALID_TABLE1: aMsg = "The database does not contain a table named \"#\"."; break; + case ERROR_INVALID_TABLE_NOSUCH: aMsg = "The database does not contain a table named \"#\"."; break; case ERROR_INVALID_TABLE_OR_QUERY: aMsg = "The database does contain neither a table nor a query named \"#\"."; break; case ERROR_INVALID_COLUMN: aMsg = "The column \"#1\" is unknown in the table \"#2\"."; break; case ERROR_INVALID_TABLE_EXIST: aMsg = "The database already contains a table or view with name \"#\"."; break; diff --git a/connectivity/source/parse/sqliterator.cxx b/connectivity/source/parse/sqliterator.cxx index 99cb3416a897..d8fd80118be6 100644 --- a/connectivity/source/parse/sqliterator.cxx +++ b/connectivity/source/parse/sqliterator.cxx @@ -416,13 +416,13 @@ OSQLTable OSQLParseTreeIterator::impl_locateRecordSource( const OUString& _rComp // m_xQueryContainer would not have been set), so emit a better error message impl_appendError( IParseContext::ERROR_INVALID_TABLE_OR_QUERY, &sName ); else - impl_appendError( IParseContext::ERROR_INVALID_TABLE1, &sName ); + impl_appendError( IParseContext::ERROR_INVALID_NOSUCH, &sName ); } } } catch(Exception&) { - impl_appendError( IParseContext::ERROR_INVALID_TABLE1, &sComposedName ); + impl_appendError( IParseContext::ERROR_INVALID_TABLE_NOSUCH, &sComposedName ); } return aReturn; |