我正在编写一个java程序,它将创建一个数据库LocalStations,它需要一个值maxStationid
int maxStationId;
我想为maxStationId分配表STATION中的单元格总数..我该怎么做?
答案 0 :(得分:4)
你必须编写一个jdbc程序,它执行select count(*) from localstations
种类的查询,返回总计数,并将返回值赋给ur变量。
答案 1 :(得分:2)
如果那就是你想要的,那么你可以使用java.sql.ResultSetMetaData
答案 2 :(得分:1)
这就是你要求的
st.executeQuery ("CREATE TABLE LocalStations select * from STATION");