Tag: cws_dev300_dba31a User: oj Date: 2008-07-07 12:23:51+0000 Modified: dba/dbaccess/source/core/api/RowSet.cxx dba/dbaccess/source/core/inc/core_resource.hrc dba/dbaccess/source/core/resource/strings.src
Log: #i85664# error message corrected for queries File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: RowSet.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/RowSet.cxx?r1=1.158&r2=1.158.8.1 Delta lines: +3 -3 ------------------- --- RowSet.cxx 2008-06-16 12:30:21+0000 1.158 +++ RowSet.cxx 2008-07-07 12:23:47+0000 1.158.8.1 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: RowSet.cxx,v $ - * $Revision: 1.158 $ + * $Revision: 1.158.8.1 $ * * This file is part of OpenOffice.org. * @@ -2392,7 +2392,7 @@ } else { - String sMessage( DBACORE_RESSTRING( RID_STR_TABLE_DOES_NOT_EXIST ) ); + String sMessage( DBACORE_RESSTRING( RID_STR_QUERY_DOES_NOT_EXIST ) ); sMessage.SearchAndReplaceAscii( "$table$", m_aCommand ); throwGenericSQLException(sMessage,*this); } Directory: /dba/dbaccess/source/core/inc/ ========================================= File [changed]: core_resource.hrc Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/inc/core_resource.hrc?r1=1.16.42.1&r2=1.16.42.2 Delta lines: +2 -1 ------------------- --- core_resource.hrc 2008-06-05 13:04:53+0000 1.16.42.1 +++ core_resource.hrc 2008-07-07 12:23:48+0000 1.16.42.2 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: core_resource.hrc,v $ - * $Revision: 1.16.42.1 $ + * $Revision: 1.16.42.2 $ * * This file is part of OpenOffice.org. * @@ -86,6 +86,7 @@ #define RID_STR_OBJECT_CONTAINER_MISMATCH ( RID_CORE_STRINGS_START + 43 ) #define RID_STR_OBJECT_ALREADY_CONTAINED ( RID_CORE_STRINGS_START + 44 ) #define RID_STR_NAME_NOT_FOUND ( RID_CORE_STRINGS_START + 45 ) +#define RID_STR_QUERY_DOES_NOT_EXIST ( RID_CORE_STRINGS_START + 46 ) #endif // _DBA_CORE_RESOURCE_HRC_ Directory: /dba/dbaccess/source/core/resource/ ============================================== File [changed]: strings.src Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/resource/strings.src?r1=1.55.42.1&r2=1.55.42.2 Delta lines: +6 -1 ------------------- --- strings.src 2008-06-05 13:04:53+0000 1.55.42.1 +++ strings.src 2008-07-07 12:23:48+0000 1.55.42.2 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: strings.src,v $ - * $Revision: 1.55.42.1 $ + * $Revision: 1.55.42.2 $ * * This file is part of OpenOffice.org. * @@ -189,6 +189,11 @@ Text [ en-US ] = "There exists no table named \"$table$\"."; }; +String RID_STR_QUERY_DOES_NOT_EXIST +{ + Text [ en-US ] = "There exists no query named \"$table$\"."; +}; + String RID_STR_CONFLICTING_NAMES { Text [ en-US ] = "There are tables in the database whose names conflict with the names of existing queries. To make full use of all queries and tables, make sure they have distinct names."; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
