可以使用ResultSetMetaData接口实现,ResultSet.getMetaData()方法就是返回实现这个接口的类,详细的请参考JDK文档

解决方案 »

  1.   

    楼上说的对,用ResultSetMetaData,它有一个getColumnTypeName(int column) 方法可以返回。还有其他的很多方法,你最好看看JAVA API
    http://java.sun.com/j2se/1.4.2/docs/api/
      

  2.   

    ResultSetMetaData  rsmd =rs.getMetaData();
    int type1=rsmd .getColumnType(1);
      

  3.   

    java.sql.Types (这是返回的整数值所对应的字段类型)
     public static final int ARRAY 2003 
     public static final int BIGINT -5 
     public static final int BINARY -2 
     public static final int BIT -7 
     public static final int BLOB 2004 
     public static final int BOOLEAN 16 
     public static final int CHAR 1 
     public static final int CLOB 2005 
     public static final int DATALINK 70 
     public static final int DATE 91 
     public static final int DECIMAL 3 
     public static final int DISTINCT 2001 
     public static final int DOUBLE 8 
     public static final int FLOAT 6 
     public static final int INTEGER 4 
     public static final int JAVA_OBJECT 2000 
     public static final int LONGVARBINARY -4 
     public static final int LONGVARCHAR -1 
     public static final int NULL 0 
     public static final int NUMERIC 2 
     public static final int OTHER 1111 
     public static final int REAL 7 
     public static final int REF 2006 
     public static final int SMALLINT 5 
     public static final int STRUCT 2002 
     public static final int TIME 92 
     public static final int TIMESTAMP 93 
     public static final int TINYINT -6 
     public static final int VARBINARY -3 
     public static final int VARCHAR 12 
      

  4.   

    用DatabaseMetaData的getCatalogs()方法试试
      

  5.   

    用DatabaseMetaData,它有一个getTables方法
    public ResultSet getTables(String catalog,
                               String schemaPattern,
                               String tableNamePattern,
                               String[] types)
                        throws SQLExceptionRetrieves a description of the tables available in the given catalog. Only table descriptions matching the catalog, schema, table name and type criteria are returned. They are ordered by TABLE_TYPE, TABLE_SCHEM and TABLE_NAME. 
    Each table description has the following columns: TABLE_CAT String => table catalog (may be null) 
    TABLE_SCHEM String => table schema (may be null) 
    TABLE_NAME String => table name 
    TABLE_TYPE String => table type. Typical types are "TABLE", "VIEW", "SYSTEM TABLE", "GLOBAL TEMPORARY", "LOCAL TEMPORARY", "ALIAS", "SYNONYM". 
    REMARKS String => explanatory comment on the table 
    TYPE_CAT String => the types catalog (may be null) 
    TYPE_SCHEM String => the types schema (may be null) 
    TYPE_NAME String => type name (may be null) 
    SELF_REFERENCING_COL_NAME String => name of the designated "identifier" column of a typed table (may be null) 
    REF_GENERATION String => specifies how values in SELF_REFERENCING_COL_NAME are created. Values are "SYSTEM", "USER", "DERIVED". (may be null) 
    Note: Some databases may not return information for all tables. 
    Parameters:
    catalog - a catalog name; must match the catalog name as it is stored in the database; "" retrieves those without a catalog; null means that the catalog name should not be used to narrow the search
    schemaPattern - a schema name pattern; must match the schema name as it is stored in the database; "" retrieves those without a schema; null means that the schema name should not be used to narrow the search
    tableNamePattern - a table name pattern; must match the table name as it is stored in the database
    types - a list of table types to include; null returns all types 
    Returns:
    ResultSet - each row is a table description