/aoo4110/main/dbaccess/source/core/api/ |
H A D | viewcontainer.cxx | 168 Reference<XConnection> xCon = m_xConnection; in appendObject() local 169 OSL_ENSURE(xCon.is(),"Connection is null!"); in appendObject() 170 if ( xCon.is() ) in appendObject() 172 ::utl::SharedUNOComponent< XStatement > xStmt( xCon->createStatement() ); in appendObject() 208 Reference<XConnection> xCon = m_xConnection; in dropObject() local 209 OSL_ENSURE(xCon.is(),"Connection is null!"); in dropObject() 210 if ( xCon.is() ) in dropObject() 212 Reference< XStatement > xStmt = xCon->createStatement( ); in dropObject()
|
H A D | tablecontainer.cxx | 323 Reference<XConnection> xCon = m_xConnection; in appendObject() local 324 OSL_ENSURE(xCon.is(),"Connection is null!"); in appendObject() 325 if ( xCon.is() ) in appendObject() 327 Reference< XStatement > xStmt = xCon->createStatement( ); in appendObject() 424 Reference<XConnection> xCon = m_xConnection; in dropObject() local 425 OSL_ENSURE(xCon.is(),"Connection is null!"); in dropObject() 426 if ( xCon.is() ) in dropObject() 428 Reference< XStatement > xStmt = xCon->createStatement( ); in dropObject()
|
H A D | FilteredContainer.cxx | 277 Reference<XConnection> xCon = m_xConnection; in construct() local 278 if ( xCon.is() ) in construct() 279 m_xMetaData = xCon->getMetaData(); in construct() 324 Reference< XConnection > xCon( m_xConnection, UNO_SET_THROW ); in construct() local 325 m_xMetaData.set( xCon->getMetaData(), UNO_SET_THROW ); in construct()
|
/aoo4110/main/scripting/workben/ifc/scripting/ |
H A D | SecurityDialogUtil.java | 98 XAccessibleContext xCon = null; in run() local 110 xCon = xRoot.getAccessibleContext(); in run() 124 int count = xCon.getAccessibleChildCount(); in run() 127 XAccessible xAcc = xCon.getAccessibleChild(i); in run()
|
/aoo4110/main/connectivity/source/drivers/hsqldb/ |
H A D | HDriver.cxx | 570 Reference<XConnection> xCon(Source.Source,UNO_QUERY); in disposing() local 571 if ( xCon.is() ) in disposing() 576 if ( i->first.get() == xCon.get() ) in disposing() 606 Reference<XConnection> xCon(i->first,UNO_QUERY); in shutdownConnections() local 607 ::comphelper::disposeComponent(xCon); in shutdownConnections() 624 Reference<XFlushable> xCon(i->second.second.first.get(),UNO_QUERY); in flushConnections() local 625 xCon->flush(); in flushConnections()
|
/aoo4110/main/dbaccess/source/ui/tabledesign/ |
H A D | TEditControl.cxx | 317 Reference<XConnection> xCon; in InitCellController() local 320 xCon = GetView()->getController().getConnection(); in InitCellController() 321 …Reference< XDatabaseMetaData> xMetaData = xCon.is() ? xCon->getMetaData() : Reference< XDatabaseMe… in InitCellController() 337 pNameCell->setCheck( isSQL92CheckEnabled(xCon) ); in InitCellController() 634 Reference<XConnection> xCon = GetView()->getController().getConnection(); in HasFieldName() local 635 …Reference< XDatabaseMetaData> xMetaData = xCon.is() ? xCon->getMetaData() : Reference< XDatabaseMe… in HasFieldName() 969 Reference<XConnection> xCon = GetView()->getController().getConnection(); in GenerateName() local 970 …Reference< XDatabaseMetaData> xMetaData = xCon.is() ? xCon->getMetaData() : Reference< XDatabaseMe… in GenerateName()
|
H A D | TableFieldControl.cxx | 134 Reference<XConnection> xCon = GetCtrl()->GetView()->getController().getConnection(); in getMetaData() local 135 if(!xCon.is()) in getMetaData() 137 return xCon->getMetaData(); in getMetaData()
|
/aoo4110/main/connectivity/source/drivers/calc/ |
H A D | CDriver.cxx | 78 Reference< XConnection > xCon = pCon; in connect() local 81 return xCon; in connect()
|
/aoo4110/main/connectivity/source/drivers/dbase/ |
H A D | DDriver.cxx | 71 Reference< XConnection > xCon = pCon; in connect() local 74 return xCon; in connect()
|
/aoo4110/main/dbaccess/source/ui/uno/ |
H A D | ColumnControl.cxx | 105 Reference<XConnection> xCon(xProp->getPropertyValue(PROPERTY_ACTIVE_CONNECTION),UNO_QUERY); in createPeer() local 106 pPeer->setConnection(xCon); in createPeer()
|
H A D | ColumnPeer.cxx | 143 Reference<XConnection> xCon(Value,UNO_QUERY); in setProperty() local 144 setConnection(xCon); in setProperty()
|
/aoo4110/main/connectivity/source/drivers/flat/ |
H A D | EDriver.cxx | 74 Reference< XConnection > xCon = pCon; in connect() local 77 return xCon; in connect()
|
/aoo4110/main/qadevOOo/tests/java/ifc/bridge/ |
H A D | _XUnoUrlResolver.java | 118 XConnection xCon = xAcc.accept(connectString); in run() local 121 "MyBridge", "urp", xCon, xInstProv); in run()
|
/aoo4110/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/ |
H A D | SDriver.cxx | 113 …Reference< XConnection > xCon = pCon; // important here because otherwise the connection could be … in connect() local 117 return xCon; in connect()
|
/aoo4110/main/connectivity/source/drivers/evoab2/ |
H A D | NDriver.cxx | 145 Reference< XConnection > xCon = pCon; in connect() local 148 return xCon; in connect()
|
/aoo4110/main/reportdesign/source/ui/dlg/ |
H A D | AddField.cxx | 351 uno::Reference< sdbc::XConnection> xCon = getConnection(); in Update() local 352 if ( xCon.is() && m_aCommandName.getLength() ) in Update() 353 …m_xColumns = dbtools::getFieldsByCommandDescriptor( xCon, GetCommandType(), GetCommand(), m_xHoldA… in Update()
|
/aoo4110/main/connectivity/source/drivers/odbcbase/ |
H A D | ODriver.cxx | 118 Reference< XConnection > xCon = pCon; in connect() local 122 return xCon; in connect()
|
/aoo4110/main/connectivity/source/drivers/ado/ |
H A D | ADriver.cxx | 137 Reference< XConnection > xCon = pCon; in connect() local 140 return xCon; in connect()
|
/aoo4110/main/connectivity/source/drivers/file/ |
H A D | FDriver.cxx | 116 Reference< XConnection > xCon = pCon; in connect() local 120 return xCon; in connect()
|
/aoo4110/main/mysqlc/source/ |
H A D | mysqlc_connection.cxx | 763 Reference< XConnection> xCon = this; in transFormPreparedStatement() local 764 …0] <<= NamedValue(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ActiveConnection")), makeAny(xCon)); in transFormPreparedStatement()
|
/aoo4110/main/dbaccess/source/core/dataaccess/ |
H A D | ModelImpl.cxx | 686 Reference<XConnection> xCon(Source.Source,UNO_QUERY); in disposing() local 687 if ( xCon.is() ) in disposing() 693 if ( xCon == i->get() ) in disposing()
|
/aoo4110/main/reportdesign/source/ui/inspection/ |
H A D | GeometryHandler.cxx | 1564 …uno::Reference<sdbc::XConnection> xCon(m_xContext->getValueByName( ::rtl::OUString(RTL_CONSTASCII_… in impl_dialogFilter_nothrow() local 1565 if ( !xCon.is() ) in impl_dialogFilter_nothrow() 1573 xRowSetProp->setPropertyValue(PROPERTY_ACTIVECONNECTION,uno::makeAny(xCon)); in impl_dialogFilter_nothrow() 2075 …uno::Reference<sdbc::XConnection> xCon(m_xContext->getValueByName( ::rtl::OUString(RTL_CONSTASCII_… in impl_initFieldList_nothrow() local 2076 if ( sObjectName.getLength() && xCon.is() ) in impl_initFieldList_nothrow() 2081 … _rFieldNames = ::dbtools::getFieldNamesByCommandDescriptor( xCon, nObjectType, sObjectName ); in impl_initFieldList_nothrow()
|
/aoo4110/main/reportdesign/source/filter/xml/ |
H A D | xmlfilter.cxx | 494 uno::Reference<sdbc::XConnection> xCon(pComponentIter->Value,uno::UNO_QUERY); in implImport() local 495 xNumberFormatsSupplier = ::dbtools::getNumberFormats(xCon); in implImport()
|
/aoo4110/main/dbaccess/source/ui/app/ |
H A D | AppController.cxx | 500 Reference<XConnection> xCon(_rSource.Source, UNO_QUERY); in disposing() local 501 if ( xCon.is() ) in disposing() 503 DBG_ASSERT( m_xDataSourceConnection == xCon, in disposing() 508 if ( m_xDataSourceConnection == xCon ) in disposing()
|
/aoo4110/main/dbaccess/source/ui/misc/ |
H A D | UITools.cxx | 908 Reference< XConnection> xCon = _xMetaData->getConnection(); in createDefaultName() local 909 if ( xCon.is() ) in createDefaultName() 910 sCatalog = xCon->getCatalog(); in createDefaultName()
|