Home
last modified time | relevance | path

Searched refs:sStatement (Results 1 – 15 of 15) sorted by relevance

/aoo41x/main/connectivity/qa/complex/connectivity/hsqldb/
H A DTestCacheSize.java112 XStatement sStatement; field in TestCacheSize
134 sStatement = null; in setUp()
204 sStatement = null; in testFillUp()
215 sStatement.execute(ddl1); in testFillUp()
216 sStatement.execute(ddl2); in testFillUp()
217 sStatement.execute(ddl3); in testFillUp()
226 sStatement.execute(ddl4); in testFillUp()
231 sStatement.execute(ddl5); in testFillUp()
236 sStatement.execute(ddl6); in testFillUp()
241 sStatement.execute(ddl7); in testFillUp()
[all …]
/aoo41x/main/extensions/source/dbpilots/
H A Dlistcombowizard.cxx193 String sStatement; in implApplySettings() local
194 sStatement.AppendAscii("SELECT "); in implApplySettings()
195 sStatement += getSettings().sListContentField; in implApplySettings()
196 sStatement.AppendAscii(", "); in implApplySettings()
197 sStatement += getSettings().sLinkedListField; in implApplySettings()
198 sStatement.AppendAscii(" FROM "); in implApplySettings()
199 sStatement += getSettings().sListContentTable; in implApplySettings()
201 aListSource[0] = sStatement; in implApplySettings()
207 String sStatement; in implApplySettings() local
208 sStatement.AppendAscii("SELECT DISTINCT "); in implApplySettings()
[all …]
/aoo41x/main/connectivity/source/commontools/
H A Dstatementcomposer.cxx124 ::rtl::OUString sStatement; in lcl_ensureUpToDateComposer_nothrow()
129 sStatement = _rData.sCommand; in lcl_ensureUpToDateComposer_nothrow()
138 sStatement = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "SELECT * FROM " ) ); in lcl_ensureUpToDateComposer_nothrow()
143sStatement += composeTableNameForSelect( _rData.xConnection, sCatalog, sSchema, sTable ); in lcl_ensureUpToDateComposer_nothrow()
165 …ry->getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Command" ) ) ) >>= sStatement; in lcl_ensureUpToDateComposer_nothrow()
166 if ( !sStatement.getLength() ) in lcl_ensureUpToDateComposer_nothrow()
178 xComposer->setElementaryQuery( sStatement ); in lcl_ensureUpToDateComposer_nothrow()
205 sStatement = xComposer->getQuery(); in lcl_ensureUpToDateComposer_nothrow()
214 if ( sStatement.getLength() ) in lcl_ensureUpToDateComposer_nothrow()
220 xComposer->setElementaryQuery( sStatement ); in lcl_ensureUpToDateComposer_nothrow()
[all …]
H A DAutoRetrievingBase.cxx35 ::rtl::OUString sStatement; in getTransformedGeneratedStatement()
38 sStatement = m_sGeneratedValueStatement; in getTransformedGeneratedStatement()
42 nIndex = sStatement.indexOf(sColumn,nIndex); in getTransformedGeneratedStatement()
47 nIndex = sStatement.indexOf(sTable,nIndex); in getTransformedGeneratedStatement()
61 sStatement = sStatement.replaceAt(nIndex,sTable.getLength(),sTableName); in getTransformedGeneratedStatement()
64 return sStatement; in getTransformedGeneratedStatement()
H A Ddbtools.cxx1309 ::rtl::OUString sStatement; in getComposedRowSetStatement()
1340 sStatement = aComposer.getQuery(); in getComposedRowSetStatement()
1358 return sStatement; in getComposedRowSetStatement()
/aoo41x/main/dbaccess/source/ui/dlg/
H A Ddirectsql.cxx288 String sStatement = m_aSQL.GetText(); in executeCurrent() local
291 implExecuteStatement(sStatement); in executeCurrent()
294 implAddToStatementHistory(sStatement); in executeCurrent()
308 String sStatement = m_aStatementHistory[_nHistoryPos]; in switchToHistory() local
309 m_aSQL.SetText(sStatement); in switchToHistory()
321 m_aSQL.SetSelection(Selection(sStatement.Len(), sStatement.Len())); in switchToHistory()
/aoo41x/main/odk/examples/DevelopersGuide/Forms/
H A DKeyGenerator.java93 String sStatement = new String( "SELECT MAX( " ); in composeUniqueyKeyStatement() local
94 sStatement += sFieldName; in composeUniqueyKeyStatement()
95 sStatement += new String( ") + 1 FROM " ); in composeUniqueyKeyStatement()
97 sStatement += extractTableName( xForm ); in composeUniqueyKeyStatement()
105 return sStatement; in composeUniqueyKeyStatement()
124 String sStatement = composeUniqueyKeyStatement( xForm, sFieldName ); in generatePrimaryKey() local
127 XResultSet xResults = xStatement.executeQuery( sStatement ); in generatePrimaryKey()
H A DDataAwareness.java377 String sStatement = "SELECT * FROM "; in existsInvisibleTable() local
378 sStatement += sTableName; in existsInvisibleTable()
379 sStatement += " WHERE 0=1"; in existsInvisibleTable()
385 xStatement.execute( sStatement ); in existsInvisibleTable()
431 …protected boolean implExecuteStatement( XConnection xConn, String sStatement ) throws java.lang.Ex… in implExecuteStatement() argument
436 xStatement.execute( sStatement ); in implExecuteStatement()
/aoo41x/main/odk/examples/java/Inspector/
H A DSourceCodeGenerator.java263 String sStatement = ""; in getPropertyStatementSourceCode() local
270sStatement += m_xLanguageSourceCodeGenerator.getStructSourceCode(sReturnObjectVariableDefinition, … in getPropertyStatementSourceCode()
271 return sStatement; in getPropertyStatementSourceCode()
274sStatement += addQueryInterfaceSourceCode(oUnoObjectDefinition, _sVariableName, "com.sun.star.bean… in getPropertyStatementSourceCode()
278sStatement += m_xLanguageSourceCodeGenerator.getPropertyValueGetterSourceCode(sPropertyName, sRetu… in getPropertyStatementSourceCode()
280 return sStatement; in getPropertyStatementSourceCode()
286 String sStatement = ""; in getMethodStatementSourceCode() local
291sStatement += addQueryInterfaceSourceCode(oUnoObjectDefinition, _sVariableName, oUnoObjectDefiniti… in getMethodStatementSourceCode()
298sStatement += "\t" + sReturnObjectVariableDefinition + oUnoObjectDefinition.getVariableName() + sS… in getMethodStatementSourceCode()
299 sStatement += m_xLanguageSourceCodeGenerator.getStatementTerminationCharacter(); in getMethodStatementSourceCode()
[all …]
/aoo41x/main/dbaccess/source/ui/misc/
H A DWCopyTable.cxx188 ::rtl::OUString sStatement(RTL_CONSTASCII_USTRINGPARAM("SELECT * FROM ")); in copyFilterAndSortingTo()
189 sStatement += sTargetName; in copyFilterAndSortingTo()
190 sStatement += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" WHERE 0=1")); in copyFilterAndSortingTo()
201 sStatement += aProperties[i].second; in copyFilterAndSortingTo()
206 sStatement += sFilter; in copyFilterAndSortingTo()
211 _xConnection->createStatement()->executeQuery(sStatement); in copyFilterAndSortingTo()
/aoo41x/main/forms/qa/integration/forms/
H A DFormControlTest.java766 protected boolean implExecuteStatement( String sStatement ) throws java.lang.Exception in implExecuteStatement() argument
770 m_databaseDocument.executeSQL( sStatement ); in implExecuteStatement()
/aoo41x/main/forms/source/runtime/
H A Dformoperations.cxx1157 ::rtl::OUString sStatement; in impl_ensureInitializedParser_nothrow()
1161 … m_xCursorProperties->getPropertyValue( PROPERTY_ACTIVECOMMAND ) >>= sStatement; in impl_ensureInitializedParser_nothrow()
1165 m_xParser->setElementaryQuery( sStatement ); in impl_ensureInitializedParser_nothrow()
/aoo41x/main/sw/source/ui/dbui/
H A Ddbmgr.cxx2072 rtl::OUString sStatement(C2U("SELECT * FROM ")); in OpenDataSource() local
2073 sStatement = C2U("SELECT * FROM "); in OpenDataSource()
2074 sStatement += aQuoteChar; in OpenDataSource()
2075 sStatement += rTableOrQuery; in OpenDataSource()
2076 sStatement += aQuoteChar; in OpenDataSource()
2077 pFound->xResultSet = pFound->xStatement->executeQuery( sStatement ); in OpenDataSource()
/aoo41x/main/dbaccess/source/ui/querydesign/
H A Dquerycontroller.cxx946 ::rtl::OUString sStatement; in impl_initialize()
947 aCurrentQueryDesign.get_ensureType( "Statement", sStatement ); in impl_initialize()
949 setStatement_fireEvent( sStatement ); in impl_initialize()
/aoo41x/main/svx/source/form/
H A Dformcontroller.cxx3125 …::rtl::OUString sStatement = ::comphelper::getString( xSet->getPropertyValue( FM_PROP_ACTIVECOMMAN… in setFilter()
3127 m_xComposer->setElementaryQuery( sStatement ); in setFilter()

Completed in 441 milliseconds