我使用以下查询来获取列数。
select count(*) from all_tab_columns where owner='IULPROJECT' and table_name='SUPPLIERS';
这个查询在 Oracle 命令行中工作,我得到了数字 5,但是如何在 Java 中返回这个数字?
在 Java 中:
stmt=conn.createStatement();
query="select count(*) from all_tab_columns where owner='IULPROJECT' and table_name='SUPPLIERS' ";
rset=stmt.executeQuery(query);
System.out.println(stmt); //<-- what should I put here to get back my number "5" ?