Kaydet (Commit) 6ea68509 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

janitorial: readability

Change-Id: Iaab09826d79b0fbcd3104d33d1f159767a09921a
üst 230ef398
...@@ -23,9 +23,8 @@ namespace connectivity ...@@ -23,9 +23,8 @@ namespace connectivity
{ {
::rtl::OUString OAutoRetrievingBase::getTransformedGeneratedStatement(const ::rtl::OUString& _sInsertStatement) const ::rtl::OUString OAutoRetrievingBase::getTransformedGeneratedStatement(const ::rtl::OUString& _sInsertStatement) const
{ {
::rtl::OUString sStmt = _sInsertStatement;
OSL_ENSURE( m_bAutoRetrievingEnabled,"Illegal call here. isAutoRetrievingEnabled is false!"); OSL_ENSURE( m_bAutoRetrievingEnabled,"Illegal call here. isAutoRetrievingEnabled is false!");
sStmt = sStmt.toAsciiUpperCase(); ::rtl::OUString sStmt = _sInsertStatement.toAsciiUpperCase();
::rtl::OUString sStatement; ::rtl::OUString sStatement;
if ( sStmt.startsWith("INSERT") ) if ( sStmt.startsWith("INSERT") )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment