Lines Matching refs:m_pTable

56 	,m_pTable(_pTable)  in OKeysHelper()
66 … OTableKeyHelper* pRet = new OTableKeyHelper(m_pTable,_rName,m_pTable->getKeyProperties(_rName)); in createObject()
72 OTableKeyHelper* pRet = new OTableKeyHelper(m_pTable,_rName,m_pTable->getKeyProperties(_rName)); in createObject()
81 m_pTable->refreshKeys(); in impl_refresh()
86 return new OTableKeyHelper(m_pTable); in createDescriptor()
136 Reference< XConnection> xConnection = m_pTable->getConnection(); in appendObject()
139 if ( m_pTable->isNew() ) in appendObject()
158 if ( m_pTable->getKeyService().is() ) in appendObject()
160 m_pTable->getKeyService()->addKey(m_pTable,descriptor); in appendObject()
168 … ::rtl::OUString aQuote = m_pTable->getConnection()->getMetaData()->getIdentifierQuoteString( ); in appendObject()
171 …aSql.append(composeTableName( m_pTable->getConnection()->getMetaData(), m_pTable, ::dbtools::eInTa… in appendObject()
201 …aSql.append(::dbtools::quoteTableName(m_pTable->getConnection()->getMetaData(),sReferencedName,::d… in appendObject()
217 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( ); in appendObject()
225 m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_SCHEMANAME)) >>= aSchema; in appendObject()
226 m_pTable->getPropertyValue(rPropMap.getNameByIndex(PROPERTY_ID_NAME)) >>= aTable; in appendObject()
230 …xResult = m_pTable->getMetaData()->getImportedKeys( m_pTable->getPropertyValue(rPropMap.getNameByI… in appendObject()
235 …xResult = m_pTable->getMetaData()->getPrimaryKeys( m_pTable->getPropertyValue(rPropMap.getNameByIn… in appendObject()
260m_pTable->addKey(sNewName,sdbcx::TKeyProperties(new sdbcx::KeyProperties(sReferencedName,nKeyType,… in appendObject()
273 Reference< XConnection> xConnection = m_pTable->getConnection(); in dropObject()
274 if ( xConnection.is() && !m_pTable->isNew() ) in dropObject()
277 if ( m_pTable->getKeyService().is() ) in dropObject()
279 m_pTable->getKeyService()->dropKey(m_pTable,xKey); in dropObject()
286 …aSql.append( composeTableName( m_pTable->getConnection()->getMetaData(), m_pTable,::dbtools::eInTa… in dropObject()
301 …const ::rtl::OUString aQuote = m_pTable->getConnection()->getMetaData()->getIdentifierQuoteString(… in dropObject()
305 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( ); in dropObject()