remove unnecessary use of OUString constructor in DBACCESS module
Change-Id: I831a6506211be30c5b743c20724904c903c5b3c0
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user