Lines Matching refs:m_pTable

56     Reference< XResultSet > xResult = m_pTable->getMetaData()->getColumns(Any(),  in createObject()
57 m_pTable->getSchema(),m_pTable->getTableName(),_rName); in createObject()
72 …if ( !_rName.equalsAscii("DEFAULT") && !m_pTable->getSchema().equalsAscii("DOMAIN") && !m_pTable->… in createObject()
74 … Reference< XStatement > xStmt = m_pTable->getMetaData()->getConnection()->createStatement( ); in createObject()
76 sQuery += m_pTable->getSchema(); in createObject()
78 …sQuery += m_pTable->getTableName() + ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("' AND COLUMNNAME… in createObject()
113 m_pTable->refreshColumns(); in impl_refresh()
125 if ( m_pTable->isNew() ) in appendObject()
129 ::rtl::OUString sQuote = m_pTable->getMetaData()->getIdentifierQuoteString( ); in appendObject()
132 m_pTable->beginTransAction(); in appendObject()
135 …aSql += ::dbtools::quoteName(sQuote,m_pTable->getSchema()) + sDot + ::dbtools::quoteName(sQuote,m_… in appendObject()
142 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement(); in appendObject()
146m_pTable->alterNotNullValue(getINT32(descriptor->getPropertyValue(OMetaConnection::getPropMap().ge… in appendObject()
150 m_pTable->rollbackTransAction(); in appendObject()
153 m_pTable->endTransAction(); in appendObject()
161 OSL_ENSURE(m_pTable,"OColumns::dropByName: Table is null!"); in dropObject()
162 if(!m_pTable->isNew()) in dropObject()
165 ::rtl::OUString sQuote = m_pTable->getMetaData()->getIdentifierQuoteString( ); in dropObject()
168 …aSql += ::dbtools::quoteName(sQuote,m_pTable->getSchema()) + sDot + ::dbtools::quoteName(sQuote,m_… in dropObject()
172 Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( ); in dropObject()