summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/mysql
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-10 13:30:42 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-10 13:30:42 +0000
commitf5e3cd070eb7ddd18d76d755d781f8e594385cd1 (patch)
treeaf51d4559b398a5f6b4822e9bc9908fd50a54a30 /connectivity/source/drivers/mysql
parentd7f1e7c38275dbc696d56e505cf08e53eab5f570 (diff)
INTEGRATION: CWS qiq (1.6.104); FILE MERGED
2006/06/27 14:53:42 fs 1.6.104.2: RESYNC: (1.6-1.7); FILE MERGED 2006/05/23 13:27:05 fs 1.6.104.1: some refactoring of compose/quoteTableName and friends, in preparation of #i51143#
Diffstat (limited to 'connectivity/source/drivers/mysql')
-rw-r--r--connectivity/source/drivers/mysql/YTable.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/mysql/YTable.cxx b/connectivity/source/drivers/mysql/YTable.cxx
index 59d9f6c6523e..70f1fb8e23ba 100644
--- a/connectivity/source/drivers/mysql/YTable.cxx
+++ b/connectivity/source/drivers/mysql/YTable.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: YTable.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2006-06-20 01:53:17 $
+ * last change: $Author: obo $ $Date: 2006-07-10 14:30:42 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -367,8 +367,8 @@ void OMySQLTable::dropDefaultValue(const ::rtl::OUString& _rColName)
::rtl::OUString sSql = ::rtl::OUString::createFromAscii("ALTER TABLE ");
const ::rtl::OUString sQuote = getMetaData()->getIdentifierQuoteString( );
- ::rtl::OUString sComposedName;
- ::dbtools::composeTableName(getMetaData(),m_CatalogName,m_SchemaName,m_Name,sComposedName,sal_True,::dbtools::eInTableDefinitions);
+ ::rtl::OUString sComposedName(
+ ::dbtools::composeTableName( getMetaData(), m_CatalogName, m_SchemaName, m_Name, sal_True, ::dbtools::eInTableDefinitions ) );
sSql += sComposedName;
return sSql;