Lines Matching refs:m_xMetaData
58 m_xMetaData(NULL), in MacabResultSet()
148 m_xMetaData.clear(); in disposing()
219 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getString()
221 sal_Int32 nFieldNumber = m_xMetaData->fieldAtColumn(columnIndex); in getString()
278 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getInt()
280 sal_Int32 nFieldNumber = m_xMetaData->fieldAtColumn(columnIndex); in getInt()
307 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getLong()
309 sal_Int32 nFieldNumber = m_xMetaData->fieldAtColumn(columnIndex); in getLong()
336 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getFloat()
338 sal_Int32 nFieldNumber = m_xMetaData->fieldAtColumn(columnIndex); in getFloat()
365 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getDouble()
367 sal_Int32 nFieldNumber = m_xMetaData->fieldAtColumn(columnIndex); in getDouble()
426 if (m_nRowPos != -1 && m_nRowPos != nRecords && m_xMetaData.is()) in getTimestamp()
428 sal_Int32 nFieldNumber = m_xMetaData->fieldAtColumn(columnIndex); in getTimestamp()
519 if (!m_xMetaData.is()) in getMetaData()
520 m_xMetaData = new MacabResultSetMetaData(m_xStatement->getOwnConnection(), m_sTableName); in getMetaData()
522 Reference< XResultSetMetaData > xMetaData = m_xMetaData.get(); in getMetaData()