Tag: cws_src680_qiq User: fs Date: 06/05/23 06:54:42 Modified: /dba/connectivity/source/sdbcx/ VCatalog.cxx, VView.cxx
Log: some refactoring of compose/quoteTableName and friends, in preparation of #i51143# File Changes: Directory: /dba/connectivity/source/sdbcx/ ========================================== File [changed]: VCatalog.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/sdbcx/VCatalog.cxx?r1=1.15&r2=1.15.104.1 Delta lines: +5 -5 ------------------- --- VCatalog.cxx 8 Sep 2005 07:42:15 -0000 1.15 +++ VCatalog.cxx 23 May 2006 13:54:39 -0000 1.15.104.1 @@ -4,9 +4,9 @@ * * $RCSfile: VCatalog.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.15.104.1 $ * - * last change: $Author: rt $ $Date: 2005/09/08 07:42:15 $ + * last change: $Author: fs $ $Date: 2006/05/23 13:54:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -230,8 +230,8 @@ if ( _xRow->wasNull() ) sTable = ::rtl::OUString(); - ::rtl::OUString sComposedName; - ::dbtools::composeTableName(m_xMetaData,sCatalog,sSchema,sTable,sComposedName,sal_False,::dbtools::eInDataManipulation); + ::rtl::OUString sComposedName( + ::dbtools::composeTableName( m_xMetaData, sCatalog, sSchema, sTable, sal_False, ::dbtools::eInDataManipulation ) ); return sComposedName; } // ----------------------------------------------------------------------------- File [changed]: VView.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/sdbcx/VView.cxx?r1=1.13&r2=1.13.104.1 Delta lines: +4 -4 ------------------- --- VView.cxx 8 Sep 2005 07:45:21 -0000 1.13 +++ VView.cxx 23 May 2006 13:54:39 -0000 1.13.104.1 @@ -4,9 +4,9 @@ * * $RCSfile: VView.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.13.104.1 $ * - * last change: $Author: rt $ $Date: 2005/09/08 07:45:21 $ + * last change: $Author: fs $ $Date: 2006/05/23 13:54:39 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -142,7 +142,7 @@ { ::rtl::OUString sComposedName; if(m_xMetaData.is()) - ::dbtools::composeTableName(m_xMetaData,m_CatalogName,m_SchemaName,m_Name,sComposedName,sal_False,::dbtools::eInDataManipulation); + sComposedName = ::dbtools::composeTableName( m_xMetaData, m_CatalogName, m_SchemaName, m_Name, sal_False, ::dbtools::eInDataManipulation ); else { Any aValue; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
