Lines Matching refs:m_pTable

76 	,m_pTable(NULL)  in OColumnsHelper()
89 OSL_ENSURE(m_pTable,"NO Table set. Error!"); in createObject()
90 Reference<XConnection> xConnection = m_pTable->getConnection(); in createObject()
103 … ::rtl::OUString sComposedName = ::dbtools::composeTableNameForSelect( xConnection, m_pTable ); in createObject()
116 const ColumnDesc* pColDesc = m_pTable->getColumnDescription(_rName); in createObject()
119 Reference<XPropertySet> xPr = m_pTable; in createObject()
144 xRet.set(::dbtools::createSDBCXColumn( m_pTable, in createObject()
159 if ( m_pTable ) in impl_refresh()
162 m_pTable->refreshColumns(); in impl_refresh()
175 OSL_ENSURE(m_pTable,"OColumnsHelper::appendByDescriptor: Table is null!"); in appendObject()
176 if ( !m_pTable || m_pTable->isNew() ) in appendObject()
179 Reference<XDatabaseMetaData> xMetaData = m_pTable->getConnection()->getMetaData(); in appendObject()
183 …aSql += ::dbtools::composeTableName( xMetaData, m_pTable, ::dbtools::eInTableDefinitions, false, f… in appendObject()
185 …aSql += ::dbtools::createStandardColumnPart(descriptor,m_pTable->getConnection(),NULL,m_pTable->ge… in appendObject()
187 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( ); in appendObject()
199 OSL_ENSURE(m_pTable,"OColumnsHelper::dropByName: Table is null!"); in dropObject()
200 if ( m_pTable && !m_pTable->isNew() ) in dropObject()
203 Reference<XDatabaseMetaData> xMetaData = m_pTable->getConnection()->getMetaData(); in dropObject()
206 …aSql += ::dbtools::composeTableName( xMetaData, m_pTable, ::dbtools::eInTableDefinitions, false, f… in dropObject()
210 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( ); in dropObject()