| /trunk/main/connectivity/qa/complex/connectivity/dbase/ |
| H A D | DBaseNumericFunctions.java | 44 final XRowSet xRowRes = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, in testFunctions() 77 …private XRow execute(final XRowSet xRowRes,final String sql) throws com.sun.star.uno.Exception, c… in execute() 88 …private void abs(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unkn… in abs() 95 …private void sign(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unk… in sign() 103 …private void mod(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unkn… in mod() 109 …private void floor(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in floor() 116 …private void ceiling(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.… in ceiling() 123 …private void round(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in round() 130 …private void exp(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unkn… in exp() 137 …private void log(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unkn… in log() [all …]
|
| H A D | DBaseStringFunctions.java | 44 final XRowSet xRowRes = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, in testFunctions() 72 …private XRow execute(final XRowSet xRowRes, String sql) throws com.sun.star.uno.Exception, com.sun… in execute() 83 …private void upper(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in upper() 90 …private void lower(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in lower() 101 …private void ascii(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in ascii() 107 …private void char_length(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.be… in char_length() 115 …private void concat(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.U… in concat() 121 …private void locate(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.U… in locate() 127 …private void substring(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bean… in substring() 133 …private void ltrim(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in ltrim() [all …]
|
| H A D | DBaseDateFunctions.java | 45 final XRowSet xRowRes = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, in testFunctions() 72 …private XRow execute(final XRowSet xRowRes, final String sql) throws com.sun.star.uno.Exception, c… in execute() 83 …private void dayofweek(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bean… in dayofweek() 89 …private void dayofmonth(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bea… in dayofmonth() 95 …private void dayofyear(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bean… in dayofyear() 101 …private void month(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in month() 107 …private void dayname(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.… in dayname() 113 …private void monthname(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bean… in monthname() 119 …private void quarter(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.… in quarter() 128 …private void week(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unk… in week() [all …]
|
| H A D | DBaseSqlTests.java | 41 final XRowSet xRowRes = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, in testFunctions() 70 …private void execute(final XRowSet xRowRes, String sql) throws com.sun.star.uno.Exception, com.sun… in execute()
|
| /trunk/main/odk/examples/DevelopersGuide/Database/ |
| H A D | RowSet.java | 88 XRowSet xRowRes = (XRowSet)UnoRuntime.queryInterface( in useRowSet() 89 XRowSet.class, in useRowSet() 111 XRowSet xRowRes = (XRowSet)UnoRuntime.queryInterface( in showRowSetPrivileges() 112 XRowSet.class, in showRowSetPrivileges() 145 XRowSet xRowRes = (XRowSet)UnoRuntime.queryInterface( in showRowSetRowCount() 146 XRowSet.class, in showRowSetRowCount() 177 XRowSet xRowRes = (XRowSet)UnoRuntime.queryInterface( in showRowSetEvents() 178 XRowSet.class, in showRowSetEvents()
|
| H A D | OpenQuery.java | 84 com.sun.star.sdbc.XRowSet xRowSet = (com.sun.star.sdbc.XRowSet) in openQuery() 85 UnoRuntime.queryInterface(com.sun.star.sdbc.XRowSet.class, rowSet); in openQuery()
|
| /trunk/main/reportbuilder/java/com/sun/star/report/ |
| H A D | SDBCReportDataFactory.java | 44 import com.sun.star.sdbc.XRowSet; 208 final XRowSet rowSet = (XRowSet) p[0]; in queryData() 352 final XRowSet rowSet, final ParameterDefinition paramDef) in fillParameter() 392 …final XRowSet rowSet = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, m_cmpCtx.getServiceManag… in createRowSet() 430 RowSetProperties rowSetProps, final XRowSet rowSet) in createParameter()
|
| H A D | SDBCReportData.java | 37 import com.sun.star.sdbc.XRowSet; 49 private final XRowSet rowSet; 58 public SDBCReportData(final XRowSet rowSet) throws SQLException in SDBCReportData()
|
| /trunk/main/odk/examples/DevelopersGuide/Forms/ |
| H A D | RowSet.java | 35 import com.sun.star.sdbc.XRowSet; 44 public class RowSet implements XRowSet, XRow 46 private XRowSet m_rowSet; 60 m_rowSet = (XRowSet)UnoRuntime.queryInterface( XRowSet.class, m_rowSetProps ); in RowSet()
|
| H A D | ControlLock.java | 162 XRowSet xRowSet = (XRowSet)UnoRuntime.queryInterface( in enableLock() 163 XRowSet.class, m_xForm ); in enableLock()
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/ |
| H A D | _XDatabaseParameterBroadcaster.java | 27 import com.sun.star.sdbc.XRowSet; 80 XRowSet xRowSet = (XRowSet)UnoRuntime.queryInterface(XRowSet.class, oObj); in _removeParameterListener()
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/ |
| H A D | SwXMailMerge.java | 115 XRowSet xRowSet = (XRowSet) in createTestEnvironment() 116 UnoRuntime.queryInterface(XRowSet.class, oRowSet); in createTestEnvironment() 253 xRowSet = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, oRowSet); in createTestEnvironment()
|
| /trunk/main/connectivity/qa/connectivity/tools/ |
| H A D | RowSet.java | 38 import com.sun.star.sdbc.XRowSet; 46 public class RowSet implements XRowSet, XRow 48 private XRowSet m_rowSet; 61 m_rowSet = UnoRuntime.queryInterface( XRowSet.class, m_rowSetProps ); in RowSet()
|
| /trunk/main/svx/source/fmcomp/ |
| H A D | fmgridif.cxx | 606 Reference< XRowSet > xForm(xComp->getParent(), UNO_QUERY); in createPeer() 774 xGrid->setRowSet(Reference< XRowSet > ()); in setDesignMode() 781 Reference< XRowSet > xForm(xComp->getParent(), UNO_QUERY); in setDesignMode() 1173 setRowSet(Reference< XRowSet > ()); in ~FmXGridPeer() 1238 Reference< XRowSet > xCursor(e.Source, UNO_QUERY); in disposing() 1478 Reference< XRowSet > xCursor(evt.Source, UNO_QUERY); in propertyChange() 1653 updateGrid( Reference< XRowSet > (NULL) ); in unloaded() 1660 updateGrid( Reference< XRowSet > (NULL) ); in reloading() 1667 updateGrid( Reference< XRowSet > (NULL) ); in unloading() 2209 setRowSet(Reference< XRowSet > ()); in dispose() [all …]
|
| H A D | gridcell.cxx | 210 Reference< XRowSet > xCur; in CreateControl() 212 … xCur = Reference< XRowSet > ((Reference< XInterface >)*m_rParent.getDataSource(), UNO_QUERY); in CreateControl() 867 void DbCellControl::Init( Window& rParent, const Reference< XRowSet >& _rxCursor ) in Init() 1101 void DbTextField::Init( Window& rParent, const Reference< XRowSet >& xCursor) in Init() 1278 void DbFormattedField::Init( Window& rParent, const Reference< XRowSet >& xCursor) in Init() 1354 Reference< XRowSet > xCursorForm(xCursor, UNO_QUERY); in Init() 1666 void DbCheckBox::Init( Window& rParent, const Reference< XRowSet >& xCursor ) in Init() 1806 void DbPatternField::Init( Window& rParent, const Reference< XRowSet >& xCursor) in Init() 1895 void DbSpinField::Init( Window& _rParent, const Reference< XRowSet >& _rxCursor ) in Init() 1964 Reference< XRowSet > xForm; in implAdjustGenericFieldSetting() [all …]
|
| /trunk/main/dbaccess/source/ui/browser/ |
| H A D | exsrcbrw.cxx | 137 Reference< XRowSet > SbaExternalSourceBrowser::CreateForm() in CreateForm() 261 Reference< XRowSet > xMasterForm; in dispatch() 267 …xMasterForm = Reference< XRowSet > (*(Reference< XInterface > *)pArguments->Value.getValue(), UNO_… in dispatch() 377 void SbaExternalSourceBrowser::Attach(const Reference< XRowSet > & xMaster) in Attach() 455 Attach(Reference< XRowSet > ()); in ClearView()
|
| /trunk/main/offapi/com/sun/star/sdb/ |
| H A D | XRowSetSupplier.idl | 31 #include <com/sun/star/sdbc/XRowSet.idl> 50 com::sun::star::sdbc::XRowSet getRowSet(); 58 [oneway] void setRowSet( [in] com::sun::star::sdbc::XRowSet xDataSource );
|
| /trunk/main/connectivity/inc/connectivity/ |
| H A D | virtualdbtools.hxx | 61 class XRowSet; 128 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet>& _rxRowSet, 136 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet>& _rxRowSet) 339 … const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& _rxRowSet,
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_dbaccess/ |
| H A D | OSingleSelectQueryComposer.java | 223 com.sun.star.sdbc.XRowSet xORowSet = (com.sun.star.sdbc.XRowSet) in createTestEnvironment() 224 UnoRuntime.queryInterface(com.sun.star.sdbc.XRowSet.class, in createTestEnvironment()
|
| /trunk/main/svx/source/inc/ |
| H A D | gridcell.hxx | 225 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet > 235 …const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& getCursor() const { ret… in getCursor() 297 …dow& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& xCursor ); 416 …dow& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& xCursor ); 446 …dow& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& xCursor ); 467 …dow& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& xCursor ); 490 …dow& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& xCursor ); 518 …dow& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& xCursor ); 542 …dow& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& xCursor ); 576 …w& rParent, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& _rxCursor ); [all …]
|
| /trunk/main/reportbuilder/java/com/sun/star/report/pentaho/ |
| H A D | SOReportJobFactory.java | 59 import com.sun.star.sdbc.XRowSet; 241 XRowSet rowSet = null; in createReportJob() 268 rowSet = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, aProps.Value); in createReportJob()
|
| /trunk/main/connectivity/source/commontools/ |
| H A D | formattedcolumnvalue.cxx | 61 using ::com::sun::star::sdbc::XRowSet; 197 const Reference< XRowSet >& i_rRowSet, const Reference< XPropertySet >& i_rColumn ) in lcl_initColumnDataValue_nothrow() 228 const Reference< XRowSet >& _rxRowSet, const Reference< XPropertySet >& i_rColumn ) in FormattedColumnValue()
|
| /trunk/main/svx/inc/svx/ |
| H A D | dbtoolsclient.hxx | 114 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet>& _rxRowSet, 123 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet>& _rxRowSet) 220 const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRowSet >& _rxRowSet,
|
| /trunk/main/svx/source/form/ |
| H A D | dbtoolsclient.cxx | 198 …Reference< XConnection > OStaticDataAccessTools::connectRowset( const Reference< XRowSet >& _rxRow… in connectRowset() 209 …Reference< XConnection > OStaticDataAccessTools::getRowSetConnection(const Reference< XRowSet >& _… in getRowSetConnection() 350 …const ::comphelper::ComponentContext& _rContext, const Reference< XRowSet >& _rxRowSet, const Refe… in createFormattedColumnValue()
|
| /trunk/main/offapi/com/sun/star/sdbc/ |
| H A D | RowSet.idl | 39 published interface XRowSet; 71 …<p>To refresh the content of a <type>RowSet</type>, use this interface's <member>XRowSet::execute<… 74 interface XRowSet;
|