summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-06-06 09:50:40 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-06-06 09:50:40 +0000
commitf3366ee623ca1d6e7e68425fd87dc7e8575ddd28 (patch)
tree81bd2899db0d6177d6f05798488076b1b52d03f9
parentf225dd99b0c673c38d7fc3f2ef614fc5061ac015 (diff)
INTEGRATION: CWS dba07 (1.3.28); FILE MERGED
2003/05/20 11:03:28 oj 1.3.28.1: #109763# remove bracket after stmt
-rw-r--r--connectivity/source/drivers/mysql/YTable.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/connectivity/source/drivers/mysql/YTable.cxx b/connectivity/source/drivers/mysql/YTable.cxx
index 31f7dbd420f6..9af96f43c44e 100644
--- a/connectivity/source/drivers/mysql/YTable.cxx
+++ b/connectivity/source/drivers/mysql/YTable.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: YTable.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-03-19 16:38:41 $
+ * last change: $Author: vg $ $Date: 2003-06-06 10:50:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -409,8 +409,6 @@ void OMySQLTable::executeStatement(const ::rtl::OUString& _rStatement )
::rtl::OUString sSQL = _rStatement;
if(sSQL.lastIndexOf(',') == (sSQL.getLength()-1))
sSQL = sSQL.replaceAt(sSQL.getLength()-1,1,::rtl::OUString::createFromAscii(")"));
- else
- sSQL += ::rtl::OUString::createFromAscii(")");
Reference< XStatement > xStmt = getConnection()->createStatement( );
if ( xStmt.is() )