Lines Matching refs:sQuery
147 ::rtl::OUString sQuery = xSourceComposer->getQuery(); in construct()
151 ::std::auto_ptr<OSQLParseNode> pStatementNode( m_aSqlParser.parseTree( aErrorMsg, sQuery ) ); in construct()
336 ::rtl::OUStringBuffer sQuery; in insertRow()
337 sQuery.appendAscii("SELECT "); in insertRow()
338 sQuery.append(aSqlIter->second); in insertRow()
339 sQuery.appendAscii(" FROM "); in insertRow()
340 sQuery.append(sComposedTableName); in insertRow()
341 sQuery.appendAscii(" WHERE "); in insertRow()
342 sQuery.append(rCondition); in insertRow()
346 …Reference< XPreparedStatement > xPrep(m_xConnection->prepareStatement(sQuery.makeStringAndClear())… in insertRow()
715 ::rtl::OUStringBuffer sQuery; in fillMissingValues()
716 sQuery.appendAscii("SELECT "); in fillMissingValues()
717 sQuery.append(aSqlIter->second); in fillMissingValues()
718 sQuery.appendAscii(" FROM "); in fillMissingValues()
719 sQuery.append(sComposedTableName); in fillMissingValues()
720 sQuery.appendAscii(" WHERE "); in fillMissingValues()
721 sQuery.append(rCondition.makeStringAndClear()); in fillMissingValues()
725 …Reference< XPreparedStatement > xPrep(m_xConnection->prepareStatement(sQuery.makeStringAndClear())… in fillMissingValues()