Lines Matching refs:column

59 void OResultSetMetaData::checkColumnIndex(sal_Int32 column)  throw(SQLException, RuntimeException)  in checkColumnIndex()  argument
62 if(column <= 0 || column > (sal_Int32)(sal_Int32)m_xColumns->get().size()) in checkColumnIndex()
66 sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize( sal_Int32 column ) throw(SQLException,… in getColumnDisplaySize() argument
69 return getPrecision(column); in getColumnDisplaySize()
73 sal_Int32 SAL_CALL OResultSetMetaData::getColumnType( sal_Int32 column ) throw(SQLException, Runtim… in getColumnType() argument
76 checkColumnIndex(column); in getColumnType()
77 …return getINT32((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getN… in getColumnType()
102 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnName( sal_Int32 column ) throw(SQLException, … in getColumnName() argument
105 checkColumnIndex(column); in getColumnName()
107 …Any aName((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getNameByI… in getColumnName()
108 …return aName.hasValue() ? getString(aName) : getString((m_xColumns->get())[column-1]->getPropertyV… in getColumnName()
123 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnTypeName( sal_Int32 column ) throw(SQLExcepti… in getColumnTypeName() argument
126 checkColumnIndex(column); in getColumnTypeName()
127 …return getString((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().get… in getColumnTypeName()
130 ::rtl::OUString SAL_CALL OResultSetMetaData::getColumnLabel( sal_Int32 column ) throw(SQLException,… in getColumnLabel() argument
133 return getColumnName(column); in getColumnLabel()
143 sal_Bool SAL_CALL OResultSetMetaData::isCurrency( sal_Int32 column ) throw(SQLException, RuntimeExc… in isCurrency() argument
146 checkColumnIndex(column); in isCurrency()
147 …return getBOOL((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getNa… in isCurrency()
163 sal_Int32 SAL_CALL OResultSetMetaData::getPrecision( sal_Int32 column ) throw(SQLException, Runtime… in getPrecision() argument
166 checkColumnIndex(column); in getPrecision()
167 …return getINT32((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getN… in getPrecision()
170 sal_Int32 SAL_CALL OResultSetMetaData::getScale( sal_Int32 column ) throw(::com::sun::star::sdbc::S… in getScale() argument
173 checkColumnIndex(column); in getScale()
174 …return getINT32((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getN… in getScale()
178 sal_Int32 SAL_CALL OResultSetMetaData::isNullable( sal_Int32 column ) throw(SQLException, RuntimeEx… in isNullable() argument
181 checkColumnIndex(column); in isNullable()
182 …return getINT32((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().getN… in isNullable()
193 sal_Bool SAL_CALL OResultSetMetaData::isReadOnly( sal_Int32 column ) throw(SQLException, RuntimeExc… in isReadOnly() argument
196 checkColumnIndex(column); in isReadOnly()
198 …(m_xColumns->get())[column-1]->getPropertySetInfo()->hasPropertyByName(OMetaConnection::getPropMap… in isReadOnly()
199 …::cppu::any2bool((m_xColumns->get())[column-1]->getPropertyValue(OMetaConnection::getPropMap().get… in isReadOnly()
203 sal_Bool SAL_CALL OResultSetMetaData::isDefinitelyWritable( sal_Int32 column ) throw(SQLException, … in isDefinitelyWritable() argument
206 return !isReadOnly(column); in isDefinitelyWritable()
209 sal_Bool SAL_CALL OResultSetMetaData::isWritable( sal_Int32 column ) throw(SQLException, RuntimeExc… in isWritable() argument
212 return !isReadOnly(column); in isWritable()