示例#1
0
 public Geometry getGeometry() {
   DataInputStream in = new DataInputStream(new ByteArrayInputStream(stmt.columnBlob(1)));
   try {
     return Line.fromBinary(in);
   } catch (IOException e) {
     throw new EGisException(e);
   }
 }
示例#2
0
 public void close() {
   stmt.close();
 }
示例#3
0
 public Object getRaw() {
   return stmt.columnBlob(0);
 }
示例#4
0
 public boolean next() {
   return stmt.next();
 }