name = rs.getString("COLUMN_NAME");
columnSize = rs.getInt("COLUMN_SIZE");
decimalDigits = rs.getInt("DECIMAL_DIGITS");
isNullable = rs.getString("IS_NULLABLE");
typeCode = rs.getInt("DATA_TYPE");
typeName = new StringTokenizer( rs.getString("TYPE_NAME"), "() " ).nextToken();