1
13708782004
Unregistered / Unconfirmed
GUEST, unregistred user!
sql=select a.* ,b.* from a,b where a.id=b.id
rs.query(sql)
如何取得各字段的类型,长度!
while (rs.next())
{
i=0;
while (1>0) {
try
system.out.print(rs.gtString(i++));
//可以拼命的取得值,但也粗遭了,日期型也这么烂干队吗?所以我需要提前知道类型
catch
{
break;
}
}
}
rs.query(sql)
如何取得各字段的类型,长度!
while (rs.next())
{
i=0;
while (1>0) {
try
system.out.print(rs.gtString(i++));
//可以拼命的取得值,但也粗遭了,日期型也这么烂干队吗?所以我需要提前知道类型
catch
{
break;
}
}
}