summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJason Burns <slapsquid@gmail.com>2019-04-07 21:23:58 -0400
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-04-08 09:21:23 +0200
commit642bd339576537d6561735273bda64dd44858960 (patch)
tree390695c3c4d6c29a8ed48674796b7af25238858e /connectivity
parent7be675cdfad328667bfbab043d71539dfd9e6fe6 (diff)
tdf#112689: replace OUStringBuffer with OUString in one file
Change-Id: I7fc32ad2bcbff4cd8bedea9bed49a0f4748ebe0f Reviewed-on: https://gerrit.libreoffice.org/70392 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity')
-rwxr-xr-x[-rw-r--r--]connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.cxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.cxx b/connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.cxx
index ba8c36da83ce..49873f8e5841 100644..100755
--- a/connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.cxx
+++ b/connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.cxx
@@ -197,13 +197,10 @@ void OResultSetMetaData::checkColumnIndex(sal_Int32 columnIndex)
auto nColCount = m_fields.size();
if (columnIndex < 1 || columnIndex > static_cast<sal_Int32>(nColCount))
{
- OUStringBuffer buf;
- buf.append("Column index out of range (expected 1 to ");
- buf.append(sal_Int32(nColCount));
- buf.append(", got ");
- buf.append(columnIndex);
- buf.append('.');
- throw SQLException(buf.makeStringAndClear(), *this, OUString(), 1, Any());
+ OUString str = "Column index out of range (expected 1 to "
+ + OUString::number(sal_Int32(nColCount)) + ", got "
+ + OUString::number(columnIndex) + ".";
+ throw SQLException(str, *this, OUString(), 1, Any());
}
}