Lines Matching refs:nType

123     SQLSMALLINT nType = 0;  in getColumnODBCType()  local
126nType = (SQLSMALLINT)getNumColAttrib(_pConnection,_aStatementHandle,_xInterface,column,SQL_DESC_CO… in getColumnODBCType()
127 if(nType == SQL_UNKNOWN_TYPE) in getColumnODBCType()
128nType = (SQLSMALLINT)getNumColAttrib(_pConnection,_aStatementHandle,_xInterface,column, SQL_DESC_T… in getColumnODBCType()
132nType = (SQLSMALLINT)getNumColAttrib(_pConnection,_aStatementHandle,_xInterface,column,SQL_DESC_CO… in getColumnODBCType()
135 return nType; in getColumnODBCType()
143 sal_Int32 nType = 0; in getColumnType() local
148 nType = getNumColAttrib(column,SQL_DESC_CONCISE_TYPE); in getColumnType()
149 if(nType == SQL_UNKNOWN_TYPE) in getColumnType()
150 nType = getNumColAttrib(column, SQL_DESC_TYPE); in getColumnType()
151 nType = OTools::MapOdbcType2Jdbc(nType); in getColumnType()
156 nType = OTools::MapOdbcType2Jdbc(getNumColAttrib(column,SQL_DESC_CONCISE_TYPE )); in getColumnType()
160 nType = OTools::MapOdbcType2Jdbc(getNumColAttrib(column,SQL_DESC_CONCISE_TYPE )); in getColumnType()
161 … aFind = m_aColumnTypes.insert(::std::map<sal_Int32,sal_Int32>::value_type(column,nType)).first; in getColumnType()
248 sal_Int32 nType = 0; in getPrecision() local
251 nType = getNumColAttrib(column,SQL_DESC_PRECISION); in getPrecision()
256 nType = getNumColAttrib(column,SQL_COLUMN_PRECISION ); in getPrecision()
258 return nType; in getPrecision()
264 sal_Int32 nType = 0; in getScale() local
267 nType = getNumColAttrib(column,SQL_DESC_SCALE); in getScale()
272 nType = getNumColAttrib(column,SQL_COLUMN_SCALE ); in getScale()
274 return nType; in getScale()