Home
last modified time | relevance | path

Searched refs:xRowSet (Results 1 – 25 of 69) sorted by relevance

123

/dports/editors/libreoffice/libreoffice-7.2.6.2/odk/examples/DevelopersGuide/Database/
H A DOpenQuery.java78 …com.sun.star.sdbc.XRowSet xRowSet = UnoRuntime.queryInterface(com.sun.star.sdbc.XRowSet.class, row… in openQuery() local
81 XPropertySet xProp = UnoRuntime.queryInterface(XPropertySet.class, xRowSet); in openQuery()
96 xRowSet.execute(); in openQuery()
101 com.sun.star.sdbc.XRow.class, xRowSet); in openQuery()
104 com.sun.star.sdbc.XColumnLocate.class, xRowSet); in openQuery()
111 while ( xRowSet.next() ) { in openQuery()
119 com.sun.star.sdbc.XResultSetUpdate.class, xRowSet); in openQuery()
123 com.sun.star.sdbc.XRowUpdate.class, xRowSet); in openQuery()
137 com.sun.star.lang.XComponent.class, xRowSet); in openQuery()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/odk/examples/DevelopersGuide/Database/
H A DOpenQuery.java78 …com.sun.star.sdbc.XRowSet xRowSet = UnoRuntime.queryInterface(com.sun.star.sdbc.XRowSet.class, row… in openQuery() local
81 XPropertySet xProp = UnoRuntime.queryInterface(XPropertySet.class, xRowSet); in openQuery()
96 xRowSet.execute(); in openQuery()
101 com.sun.star.sdbc.XRow.class, xRowSet); in openQuery()
104 com.sun.star.sdbc.XColumnLocate.class, xRowSet); in openQuery()
111 while ( xRowSet.next() ) { in openQuery()
119 com.sun.star.sdbc.XResultSetUpdate.class, xRowSet); in openQuery()
123 com.sun.star.sdbc.XRowUpdate.class, xRowSet); in openQuery()
137 com.sun.star.lang.XComponent.class, xRowSet); in openQuery()
/dports/editors/libreoffice/libreoffice-7.2.6.2/wizards/com/sun/star/wizards/db/
H A DRecordParser.java44 private XInterface xRowSet; field in RecordParser
62 xRowSet = (XInterface) xMSF.createInstance("com.sun.star.sdb.RowSet"); in getInterfaces()
63 UnoRuntime.queryInterface(XColumnsSupplier.class, xRowSet); in getInterfaces()
64 xRowSetComponent = UnoRuntime.queryInterface(XComponent.class, xRowSet); in getInterfaces()
65 xExecute = UnoRuntime.queryInterface(XCompletedExecution.class, xRowSet); in getInterfaces()
158 Helper.setUnoPropertyValue(xRowSet, "DataSourceName", DataSourceName); in executeCommand()
159 Helper.setUnoPropertyValue(xRowSet, PropertyNames.ACTIVE_CONNECTION, DBConnection); in executeCommand()
160 Helper.setUnoPropertyValue(xRowSet, PropertyNames.COMMAND, Command); in executeCommand()
161 …Helper.setUnoPropertyValue(xRowSet, PropertyNames.COMMAND_TYPE, Integer.valueOf(_nCommandType)); /… in executeCommand()
163 …Access xResultAccess = UnoRuntime.queryInterface(com.sun.star.sdb.XResultSetAccess.class, xRowSet); in executeCommand()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/wizards/com/sun/star/wizards/db/
H A DRecordParser.java44 private XInterface xRowSet; field in RecordParser
62 xRowSet = (XInterface) xMSF.createInstance("com.sun.star.sdb.RowSet"); in getInterfaces()
63 UnoRuntime.queryInterface(XColumnsSupplier.class, xRowSet); in getInterfaces()
64 xRowSetComponent = UnoRuntime.queryInterface(XComponent.class, xRowSet); in getInterfaces()
65 xExecute = UnoRuntime.queryInterface(XCompletedExecution.class, xRowSet); in getInterfaces()
158 Helper.setUnoPropertyValue(xRowSet, "DataSourceName", DataSourceName); in executeCommand()
159 Helper.setUnoPropertyValue(xRowSet, PropertyNames.ACTIVE_CONNECTION, DBConnection); in executeCommand()
160 Helper.setUnoPropertyValue(xRowSet, PropertyNames.COMMAND, Command); in executeCommand()
161 …Helper.setUnoPropertyValue(xRowSet, PropertyNames.COMMAND_TYPE, Integer.valueOf(_nCommandType)); /… in executeCommand()
163 …Access xResultAccess = UnoRuntime.queryInterface(com.sun.star.sdb.XResultSetAccess.class, xRowSet); in executeCommand()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/docshell/
H A Ddbdocimp.cxx195 uno::Reference<sdbc::XRowSet> xRowSet( xResultSet, uno::UNO_QUERY ); in DoImport() local
197 if ( !xRowSet.is() ) in DoImport()
229 xRowSet->execute(); in DoImport()
232 if ( xRowSet.is() ) in DoImport()
254 xLocate.set( xRowSet, uno::UNO_QUERY ); in DoImport()
262 uno::Reference<sdbc::XRow> xRow( xRowSet, uno::UNO_QUERY ); in DoImport()
289 xRowSet->beforeFirst(); in DoImport()
296 bEnd = !xRowSet->next(); in DoImport()
315 bEnd = !xRowSet->absolute(nRowsRead); in DoImport()
321 if ( !bBookmarkSelection && xRowSet->next() ) in DoImport()
[all …]
H A Ddocsh8.cxx302 ::utl::DisposableComponent aRowSetHelper(xRowSet); in DBaseImport()
303 uno::Reference<beans::XPropertySet> xRowProp( xRowSet, uno::UNO_QUERY ); in DBaseImport()
315 xRowSet->execute(); in DBaseImport()
330 uno::Reference<sdbc::XRow> xRow( xRowSet, uno::UNO_QUERY ); in DBaseImport()
386 while ( !bEnd && xRowSet->next() ) in DBaseImport()
865 ::utl::DisposableComponent aRowSetHelper(xRowSet); in DBaseExport()
866 uno::Reference<beans::XPropertySet> xRowProp( xRowSet, uno::UNO_QUERY ); in DBaseExport()
876 xRowSet->execute(); in DBaseExport()
880 uno::Reference<sdbc::XResultSetUpdate> xResultUpdate( xRowSet, uno::UNO_QUERY ); in DBaseExport()
884 uno::Reference<sdbc::XRowUpdate> xRowUpdate( xRowSet, uno::UNO_QUERY ); in DBaseExport()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/docshell/
H A Ddbdocimp.cxx194 uno::Reference<sdbc::XRowSet> xRowSet( xResultSet, uno::UNO_QUERY ); in DoImport() local
196 if ( !xRowSet.is() ) in DoImport()
228 xRowSet->execute(); in DoImport()
231 if ( xRowSet.is() ) in DoImport()
253 xLocate.set( xRowSet, uno::UNO_QUERY ); in DoImport()
261 uno::Reference<sdbc::XRow> xRow( xRowSet, uno::UNO_QUERY ); in DoImport()
288 xRowSet->beforeFirst(); in DoImport()
295 bEnd = !xRowSet->next(); in DoImport()
314 bEnd = !xRowSet->absolute(nRowsRead); in DoImport()
320 if ( !bBookmarkSelection && xRowSet->next() ) in DoImport()
[all …]
H A Ddocsh8.cxx303 ::utl::DisposableComponent aRowSetHelper(xRowSet); in DBaseImport()
304 uno::Reference<beans::XPropertySet> xRowProp( xRowSet, uno::UNO_QUERY ); in DBaseImport()
316 xRowSet->execute(); in DBaseImport()
331 uno::Reference<sdbc::XRow> xRow( xRowSet, uno::UNO_QUERY ); in DBaseImport()
387 while ( !bEnd && xRowSet->next() ) in DBaseImport()
866 ::utl::DisposableComponent aRowSetHelper(xRowSet); in DBaseExport()
867 uno::Reference<beans::XPropertySet> xRowProp( xRowSet, uno::UNO_QUERY ); in DBaseExport()
877 xRowSet->execute(); in DBaseExport()
881 uno::Reference<sdbc::XResultSetUpdate> xResultUpdate( xRowSet, uno::UNO_QUERY ); in DBaseExport()
885 uno::Reference<sdbc::XRowUpdate> xRowUpdate( xRowSet, uno::UNO_QUERY ); in DBaseExport()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/qa/extras/
H A Drowsetclones.cxx63 …uno::Reference< XRowSet > xRowSet (getMultiServiceFactory()->createInstance("com.sun.star.sdb.RowS… in test() local
64 CPPUNIT_ASSERT(xRowSet.is()); in test()
65 uno::Reference< XPropertySet > rowSetProperties ( xRowSet, UNO_QUERY ); in test()
71 xRowSet->execute(); in test()
72 uno::Reference< XResultSet > xResultSet = xRowSet; in test()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/qa/extras/
H A Drowsetclones.cxx76 …uno::Reference< XRowSet > xRowSet (getMultiServiceFactory()->createInstance("com.sun.star.sdb.RowS… in test() local
77 CPPUNIT_ASSERT(xRowSet.is()); in test()
78 uno::Reference< XPropertySet > rowSetProperties ( xRowSet, UNO_QUERY ); in test()
84 xRowSet->execute(); in test()
85 uno::Reference< XResultSet > xResultSet = xRowSet; in test()
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/source/ui/uno/
H A Dcomposerdialogs.cxx162 Reference<css::sdbc::XRowSet> xRowSet; in initialize() local
163 aArguments[1] >>= xRowSet; in initialize()
167 setPropertyValue( "RowSet", makeAny( xRowSet ) ); in initialize()
209 Reference<css::beans::XPropertySet> xRowSet; in initialize() local
210 aArguments[1] >>= xRowSet; in initialize()
212 setPropertyValue( "RowSet", makeAny( xRowSet ) ); in initialize()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/source/ui/uno/
H A Dcomposerdialogs.cxx160 Reference<css::sdbc::XRowSet> xRowSet; in initialize() local
161 aArguments[1] >>= xRowSet; in initialize()
165 setPropertyValue( "RowSet", makeAny( xRowSet ) ); in initialize()
207 Reference<css::beans::XPropertySet> xRowSet; in initialize() local
208 aArguments[1] >>= xRowSet; in initialize()
210 setPropertyValue( "RowSet", makeAny( xRowSet ) ); in initialize()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/table/
H A Dtablertfexporter.cxx57 …void WriteRow( const Reference< XPropertySet >& xRowSet, sal_Int32 nRow, const std::vector< sal_In…
113 Reference< XPropertySet > xRowSet( xRows->getByIndex(nRow), UNO_QUERY_THROW ); in Write() local
114 WriteRow( xRowSet, nRow, aColumnStart ); in Write()
124 void SdrTableRtfExporter::WriteRow( const Reference< XPropertySet >& xRowSet, sal_Int32 nRow, const… in WriteRow() argument
127 xRowSet->getPropertyValue( gsSize ) >>= nRowHeight; in WriteRow()
H A Dtablelayouter.cxx745 Reference< XPropertySet > xRowSet( xRows->getByIndex(nRow), UNO_QUERY_THROW ); in LayoutTableHeight() local
747 xRowSet->getPropertyValue( gsSize ) >>= nRowPropHeight; in LayoutTableHeight()
812 xRowSet->getPropertyValue( sOptimalSize ) >>= bOptimal; in LayoutTableHeight()
819 xRowSet->getPropertyValue( gsSize ) >>= nRowHeight; in LayoutTableHeight()
891 Reference< XPropertySet > xRowSet( xRows->getByIndex(nRow), UNO_QUERY_THROW ); in LayoutTableHeight() local
892 xRowSet->setPropertyValue( gsSize, Any( maRows[nRow].mnSize ) ); in LayoutTableHeight()
1250 … Reference< XPropertySet > xRowSet( xRows->getByIndex( nFirstRow ), UNO_QUERY_THROW ); in DistributeRows() local
1251 xRowSet->setPropertyValue( gsSize, Any( nWish ) ); in DistributeRows()
1298 Reference< XPropertySet > xRowSet( xRows->getByIndex( nRow ), UNO_QUERY_THROW ); in DistributeRows() local
1299 xRowSet->setPropertyValue( gsSize, Any( nHeight ) ); in DistributeRows()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/table/
H A Dtablertfexporter.cxx56 …void WriteRow( const Reference< XPropertySet >& xRowSet, sal_Int32 nRow, const std::vector< sal_In…
118 Reference< XPropertySet > xRowSet( xRows->getByIndex(nRow), UNO_QUERY_THROW ); in Write() local
119 WriteRow( xRowSet, nRow, aColumnStart ); in Write()
129 void SdrTableRtfExporter::WriteRow( const Reference< XPropertySet >& xRowSet, sal_Int32 nRow, const… in WriteRow() argument
132 xRowSet->getPropertyValue( gsSize ) >>= nRowHeight; in WriteRow()
/dports/editors/libreoffice/libreoffice-7.2.6.2/odk/examples/DevelopersGuide/Forms/
H A DControlLock.java175 XRowSet xRowSet = UnoRuntime.queryInterface( in enableLock() local
179 xRowSet.addRowSetListener( this ); in enableLock()
183 xRowSet.removeRowSetListener( this ); in enableLock()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/odk/examples/DevelopersGuide/Forms/
H A DControlLock.java175 XRowSet xRowSet = UnoRuntime.queryInterface( in enableLock() local
179 xRowSet.addRowSetListener( this ); in enableLock()
183 xRowSet.removeRowSetListener( this ); in enableLock()
/dports/editors/libreoffice/libreoffice-7.2.6.2/qadevOOo/tests/java/ifc/form/
H A D_XDatabaseParameterBroadcaster.java76 XRowSet xRowSet = UnoRuntime.queryInterface(XRowSet.class, oObj); in _removeParameterListener() local
77 xRowSet.execute(); in _removeParameterListener()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/qadevOOo/tests/java/ifc/form/
H A D_XDatabaseParameterBroadcaster.java76 XRowSet xRowSet = UnoRuntime.queryInterface(XRowSet.class, oObj); in _removeParameterListener() local
77 xRowSet.execute(); in _removeParameterListener()
/dports/editors/libreoffice/libreoffice-7.2.6.2/extensions/source/bibliography/
H A Dgeneral.cxx291 uno::Reference<sdbc::XRowSet> xRowSet(pDatMan->getForm(), UNO_QUERY); in IMPL_LINK() local
292 if (xRowSet.is() && !xRowSet->isFirst()) in IMPL_LINK()
293 xRowSet->previous(); in IMPL_LINK()
337 uno::Reference<sdbc::XRowSet> xRowSet(pDatMan->getForm(), UNO_QUERY); in IMPL_LINK() local
338 if (xRowSet.is()) in IMPL_LINK()
340 if (xRowSet->isLast()) in IMPL_LINK()
342 uno::Reference<sdbc::XResultSetUpdate> xUpdateCursor(xRowSet, UNO_QUERY); in IMPL_LINK()
347 (void)xRowSet->next(); in IMPL_LINK()
H A Dbibload.cxx285 Reference< XRowSet > xRowSet(xMgr->createInstance("com.sun.star.sdb.RowSet"), UNO_QUERY); in GetDataColumns() local
286 Reference< XPropertySet > xResultSetProps(xRowSet, UNO_QUERY); in GetDataColumns()
305 xRowSet->execute(); in GetDataColumns()
320 Reference< XComponent > xSetComp(xRowSet, UNO_QUERY); in GetDataColumns()
323 xRowSet = nullptr; in GetDataColumns()
326 const_cast<BibliographyLoader*>(this)->m_xCursor = xRowSet.get(); in GetDataColumns()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/extensions/source/bibliography/
H A Dbibload.cxx337 Reference< XRowSet > xRowSet(xMgr->createInstance("com.sun.star.sdb.RowSet"), UNO_QUERY); in GetDataColumns() local
338 Reference< XPropertySet > xResultSetProps(xRowSet, UNO_QUERY); in GetDataColumns()
357 xRowSet->execute(); in GetDataColumns()
372 Reference< XComponent > xSetComp(xRowSet, UNO_QUERY); in GetDataColumns()
375 xRowSet = nullptr; in GetDataColumns()
378 const_cast<BibliographyLoader*>(this)->m_xCursor = xRowSet.get(); in GetDataColumns()
/dports/editors/libreoffice/libreoffice-7.2.6.2/qadevOOo/tests/java/mod/_sw/
H A DSwXMailMerge.java97 XRowSet xRowSet = UnoRuntime.queryInterface(XRowSet.class, oRowSet); in createTestEnvironment() local
101 xRowSet.execute(); in createTestEnvironment()
200 xRowSet = UnoRuntime.queryInterface(XRowSet.class, oRowSet); in createTestEnvironment()
205 xRowSet.execute(); in createTestEnvironment()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/qadevOOo/tests/java/mod/_sw/
H A DSwXMailMerge.java97 XRowSet xRowSet = UnoRuntime.queryInterface(XRowSet.class, oRowSet); in createTestEnvironment() local
101 xRowSet.execute(); in createTestEnvironment()
200 xRowSet = UnoRuntime.queryInterface(XRowSet.class, oRowSet); in createTestEnvironment()
205 xRowSet.execute(); in createTestEnvironment()
/dports/editors/libreoffice/libreoffice-7.2.6.2/reportdesign/source/ui/dlg/
H A DAddField.cxx62 …indow::OAddFieldWindow(weld::Window* pParent, const uno::Reference< beans::XPropertySet >& xRowSet) in OAddFieldWindow() argument
66 , m_xRowSet(xRowSet) in OAddFieldWindow()
227 uno::Reference< css::sdbc::XRowSet > xRowSet(m_xRowSet,uno::UNO_QUERY); in Update() local
228 Sequence< OUString > aParamNames( getParameterNames( xRowSet ) ); in Update()

123