他的回复:
换了,还是不行,我看了下取那个字段的 底层的处理代码是一样的;现在出现了这种不能解析的问题要怎么解决? 驱动里面 都是一样的代码 public Blob getBlob(int i) throws SQLException { byte[] value = this.getRawValue(i); if (value == null) { return null; } else { String s = this.getString(i); byte[] byt = this.toBytes(s); PGBlob blob = new PGBlob(); blob.setBytes(1L, byt); return blob; } }