Searched refs:sSQL (Results 1 – 10 of 10) sorted by relevance
/aoo41x/main/testgraphical/source/ |
H A D | fill_documents_loop.pl | 205 push(@aEntries, $sSQL); 265 print "$sSQL\n"; 266 ExecSQL($sSQL); 272 print "$sSQL\n"; 273 ExecSQL($sSQL); 298 print "$sSQL\n"; 299 ExecSQL($sSQL); 311 ExecSQL($sSQL); 315 print "$sSQL\n"; 316 ExecSQL($sSQL); [all …]
|
H A D | CallExternals.pm | 470 my $sSQL = shift; 485 ($error, @aResult) = callphp(getPHPExecutable(), $sSQLDirect, singleQuote($sSQL)); 490 log_print ("SQL Statement: " . singleQuote($sSQL) . "\n");
|
/aoo41x/main/connectivity/source/drivers/mysql/ |
H A D | YTables.cxx | 185 ::rtl::OUString sSQL = _sSql; in adjustSQL() 187 sal_Int32 nIndex = sSQL.indexOf(s_sUNSIGNED); in adjustSQL() 190 sal_Int32 nParen = sSQL.indexOf(')',nIndex); in adjustSQL() 192 ::rtl::OUString sNewUnsigned( sSQL.copy(nPos,nParen - nPos + 1)); in adjustSQL() 193 …sSQL = sSQL.replaceAt(nIndex,s_sUNSIGNED.getLength()+sNewUnsigned.getLength(),sNewUnsigned + s_sUN… in adjustSQL() 194 … nIndex = sSQL.indexOf(s_sUNSIGNED,nIndex + s_sUNSIGNED.getLength()+sNewUnsigned.getLength()); in adjustSQL() 196 return sSQL; in adjustSQL()
|
H A D | YTable.cxx | 362 ::rtl::OUString sSQL = _rStatement; in executeStatement() 363 if(sSQL.lastIndexOf(',') == (sSQL.getLength()-1)) in executeStatement() 364 sSQL = sSQL.replaceAt(sSQL.getLength()-1,1,::rtl::OUString::createFromAscii(")")); in executeStatement() 369 xStmt->execute(sSQL); in executeStatement()
|
/aoo41x/main/connectivity/source/drivers/hsqldb/ |
H A D | HTable.cxx | 336 ::rtl::OUString sSQL = _rStatement; in executeStatement() 337 if(sSQL.lastIndexOf(',') == (sSQL.getLength()-1)) in executeStatement() 338 sSQL = sSQL.replaceAt(sSQL.getLength()-1,1,::rtl::OUString::createFromAscii(")")); in executeStatement() 343 try { xStmt->execute(sSQL); } in executeStatement()
|
H A D | HConnection.cxx | 359 ::rtl::OUStringBuffer sSQL; in impl_isTextTable_nothrow() 360 sSQL.appendAscii( "SELECT HSQLDB_TYPE FROM INFORMATION_SCHEMA.SYSTEM_TABLES" ); in impl_isTextTable_nothrow() 361 HTools::appendTableFilterCrit( sSQL, sCatalog, sSchema, sName, true ); in impl_isTextTable_nothrow() 362 sSQL.appendAscii( " AND TABLE_TYPE = 'TABLE'" ); in impl_isTextTable_nothrow() 365 …Reference< XResultSet > xTableHsqlType( xStatement->executeQuery( sSQL.makeStringAndClear() ), UNO… in impl_isTextTable_nothrow()
|
/aoo41x/main/dbaccess/source/core/api/ |
H A D | statement.cxx | 543 ::rtl::OUString sSQL( impl_doEscapeProcessing_nothrow( _rSQL ) ); in executeQuery() 545 Reference< XResultSet > xInnerResultSet = m_xAggregateStatement->executeQuery( sSQL ); in executeQuery() 570 ::rtl::OUString sSQL( impl_doEscapeProcessing_nothrow( _rSQL ) ); in executeUpdate() 571 return m_xAggregateStatement->executeUpdate( sSQL ); in executeUpdate() 583 ::rtl::OUString sSQL( impl_doEscapeProcessing_nothrow( _rSQL ) ); in execute() 584 return m_xAggregateStatement->execute( sSQL ); in execute() 598 ::rtl::OUString sSQL( impl_doEscapeProcessing_nothrow( _rSQL ) ); in addBatch() 599 Reference< XBatchExecution >(m_xAggregateAsSet, UNO_QUERY)->addBatch( sSQL ); in addBatch()
|
H A D | SingleSelectQueryComposer.cxx | 172 ::rtl::OUString sSQL = STR_SELECT; in getPureSelectStatement() 173 _pRootNode->getChild(1)->parseNodeToStr( sSQL, _rxConnection ); in getPureSelectStatement() 174 _pRootNode->getChild(2)->parseNodeToStr( sSQL, _rxConnection ); in getPureSelectStatement() 175 sSQL += STR_FROM; in getPureSelectStatement() 177 return sSQL; in getPureSelectStatement() 374 ::rtl::OUStringBuffer sSQL; in setCommand() 383 sSQL.appendAscii("SELECT * FROM "); in setCommand() 416 sSQL.append(sCommand); in setCommand() 437 ::rtl::OUString sCommand = sSQL.makeStringAndClear(); in setCommand() 829 ::rtl::OUString sSQL( aSQL.makeStringAndClear() ); in getColumns() [all …]
|
/aoo41x/main/qadevOOo/runner/convwatch/ |
H A D | DB.java | 423 String sSQL = "SELECT uuid()"; in getDBDistinct() local 424 ArrayList aResultList = QuerySQL(aCon, sSQL); in getDBDistinct()
|
/aoo41x/main/dbaccess/source/ui/querydesign/ |
H A D | QueryDesignView.cxx | 3030 ::rtl::OUString sSQL = aSqlCmd.makeStringAndClear(); in getStatement() 3035 … ::std::auto_ptr<OSQLParseNode> pParseNode( rParser.parseTree( sErrorMessage, sSQL, sal_True ) ); in getStatement() 3047 sSQL = sTemp; in getStatement() 3052 return sSQL; in getStatement()
|
Completed in 337 milliseconds