remove unnecessary use of OUString constructor in DBACCESS module

Change-Id: I831a6506211be30c5b743c20724904c903c5b3c0
This commit is contained in:
Noel Grandin
2013-11-04 13:33:17 +02:00
parent 3e70dda335
commit 3ef88d370e
39 changed files with 137 additions and 141 deletions

View File

@@ -567,7 +567,7 @@ void SAL_CALL OKeySet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetRow
Reference<XPropertySet> xSet(_xTable,UNO_QUERY);
fillTableName(xSet);
OUStringBuffer aSql = OUString("UPDATE " + m_aComposedTableName + " SET ");
OUStringBuffer aSql = "UPDATE " + m_aComposedTableName + " SET ";
// list all cloumns that should be set
static OUString aPara(" = ?,");
OUString aQuote = getIdentifierQuoteString();