Lines Matching refs:m_pTable

53 	,m_pTable(_pTable)  in OIndexesHelper()
60 Reference< XConnection> xConnection = m_pTable->getConnection(); in createObject()
77 m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_SCHEMANAME)) >>= aSchema; in createObject()
78 m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_NAME)) >>= aTable; in createObject()
80 Any aCatalog = m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_CATALOGNAME)); in createObject()
81 …Reference< XResultSet > xResult = m_pTable->getMetaData()->getIndexInfo(aCatalog,aSchema,aTable,sa… in createObject()
97 xResult = m_pTable->getMetaData()->getPrimaryKeys(aCatalog,aSchema,aTable); in createObject()
108 OIndexHelper* pRet = new OIndexHelper(m_pTable,aName,aQualifier,bUnique, in createObject()
122 m_pTable->refreshIndexes(); in impl_refresh()
127 return new OIndexHelper(m_pTable); in createDescriptor()
133 Reference< XConnection> xConnection = m_pTable->getConnection(); in appendObject()
136 if ( m_pTable->isNew() ) in appendObject()
139 if ( m_pTable->getIndexService().is() ) in appendObject()
141 m_pTable->getIndexService()->addIndex(m_pTable,descriptor); in appendObject()
147 ::rtl::OUString aQuote = m_pTable->getMetaData()->getIdentifierQuoteString( ); in appendObject()
156 …dbtools::qualifiedNameComponents(m_pTable->getMetaData(),m_pTable->getName(),aCatalog,aSchema,aTab… in appendObject()
159 …aComposedName = dbtools::composeTableName(m_pTable->getMetaData(),aCatalog,aSchema,aTable,sal_True… in appendObject()
170 …sal_Bool bAddIndexAppendix = ::dbtools::getBooleanDataSourceSetting( m_pTable->getConnection(), "A… in appendObject()
206 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( ); in appendObject()
221 Reference< XConnection> xConnection = m_pTable->getConnection(); in dropObject()
222 if( xConnection.is() && !m_pTable->isNew()) in dropObject()
224 if ( m_pTable->getIndexService().is() ) in dropObject()
226 m_pTable->getIndexService()->dropIndex(m_pTable,_sElementName); in dropObject()
238 …::rtl::OUString aComposedName = dbtools::composeTableName( m_pTable->getMetaData(), m_pTable, ::db… in dropObject()
240 …sIndexName = dbtools::composeTableName( m_pTable->getMetaData(), sTemp, aSchema, aName, sal_True, … in dropObject()
246 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( ); in dropObject()