我有一个具有address属性作为"Text"数据类型的访问数据库。在我的java / jdbc代码中,我使用结果集通过select查询检索地址值。
通常,对于sql数据库,它与String address= resultset.getString();一起使用
但是,由于它是访问数据库,如何查询它?

作为,我正在使用String address= resultset.getString();语句,我得到以下异常:

Invalid character value for cast specification on column number

最佳答案

获取结果集值时,请指定列名称或列索引。

喜欢,

String value= resultset.getString(1); // if the text is in the first column

09-11 19:16
查看更多