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