Home
last modified time | relevance | path

Searched refs:m_xDestConnection (Results 1 – 6 of 6) sorted by relevance

/AOO41X/main/dbaccess/source/ui/misc/
H A DWCopyTable.cxx565 ,m_xDestConnection( _xConnection ) in OCopyTableWizard()
595 if ( _xSourceConnection == m_xDestConnection ) in OCopyTableWizard()
597 Reference< XTablesSupplier > xSup( m_xDestConnection, UNO_QUERY_THROW ); in OCopyTableWizard()
610 ::dbaui::fillTypeInfo( m_xDestConnection, m_sTypeNames, m_aDestTypeInfo, m_aDestTypeInfoIndex ); in OCopyTableWizard()
619 if ( !lcl_canCreateViewFor_nothrow( m_xDestConnection ) ) in OCopyTableWizard()
622 if ( !lcl_sameConnection_throw( _xSourceConnection, m_xDestConnection ) ) in OCopyTableWizard()
638 …m_sName = ::dbtools::composeTableName(m_xDestConnection->getMetaData(),sCatalog,sSchema,sTable,sal… in OCopyTableWizard()
667 ,m_xDestConnection( _xConnection ) in OCopyTableWizard()
811 OSL_ENSURE( m_xDestConnection.is(), "OCopyTableWizard::CheckColumns: No connection!" ); in CheckColumns()
814 if ( m_xDestConnection.is() ) in CheckColumns()
[all …]
H A DWCPage.cxx120 if ( m_pParent->m_xDestConnection.is() ) in DBG_NAME()
218 DynamicTableOrQueryNameCheck aNameCheck( m_pParent->m_xDestConnection, CommandType::TABLE ); in LeavePage()
229 Reference< XDatabaseMetaData > xMeta = m_pParent->m_xDestConnection->getMetaData(); in LeavePage()
322 Reference< XTablesSupplier > xSup( m_pParent->m_xDestConnection, UNO_QUERY ); in checkAppendData()
335 ObjectCopySource aTableCopySource( m_pParent->m_xDestConnection, xTable ); in checkAppendData()
H A DWTypeSelect.cxx234 return ((OWizTypeSelect*)GetParent())->m_pParent->m_xDestConnection->getMetaData(); in getMetaData()
239 return ((OWizTypeSelect*)GetParent())->m_pParent->m_xDestConnection; in getConnection()
288 …::dbaui::fillAutoIncrementValue( m_pParent->m_xDestConnection, m_bAutoIncrementEnabled, m_sAutoInc… in OWizTypeSelect()
H A DWColumnSelect.cxx236 Reference< XDatabaseMetaData > xMetaData( m_pParent->m_xDestConnection->getMetaData() ); in IMPL_LINK()
286 Reference< XDatabaseMetaData > xMetaData( m_pParent->m_xDestConnection->getMetaData() ); in IMPL_LINK()
/AOO41X/main/dbaccess/source/ui/uno/
H A Dcopytablewizard.cxx193 …zed() const { return m_xSourceConnection.is() && m_pSourceObject.get() && m_xDestConnection.is(); } in isInitialized()
357 SharedConnection m_xDestConnection; member in dbaui::CopyTableWizard
404 ,m_xDestConnection() in CopyTableWizard()
418 try { m_xDestConnection.clear(); } in ~CopyTableWizard()
487 && !OCopyTableWizard::supportsViews( m_xDestConnection ) in setOperation()
524 if ( _newPrimaryKey.IsPresent && !OCopyTableWizard::supportsPrimaryKey( m_xDestConnection ) ) in setCreatePrimaryKey()
1155 OSL_PRECOND( m_xDestConnection.is(), "CopyTableWizard::impl_copyRows_throw: illegal call!" ); in impl_copyRows_throw()
1156 if ( !m_xDestConnection.is() ) in impl_copyRows_throw()
1159 … Reference< XDatabaseMetaData > xDestMetaData( m_xDestConnection->getMetaData(), UNO_QUERY_THROW ); in impl_copyRows_throw()
1426 … const bool bIsSameConnection = ( m_xSourceConnection.getTyped() == m_xDestConnection.getTyped() ); in impl_doCopy_nothrow()
[all …]
/AOO41X/main/dbaccess/source/ui/inc/
H A DWCopyTable.hxx257 … ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > m_xDestConnection;
361 … bool supportsPrimaryKey() const { return supportsPrimaryKey( m_xDestConnection ); } in supportsPrimaryKey()
364 bool supportsViews() const { return supportsViews( m_xDestConnection ); } in supportsViews()