我有一个address
属性为"Text"
数据类型的访问数据库。在我的java / jdbc代码中,我使用结果集来使用select
查询来检索地址值。
通常,对于sql数据库,它适用于String address= resultset.getString();
但是,既然是访问db我该如何查询呢?
因为,我正在使用String address= resultset.getString();
语句,我得到以下异常:
Invalid character value for cast specification on column number
答案 0 :(得分:1)
在获取结果集值时指定列名称或列的索引。
等
String value= resultset.getString(1); // if the text is in the first column