8081828384858687
"('ft1', 'features', 'ft1', 4326)"; run(sql); } String toString(Geometry g) throws IOException { byte[] bytes = new GeoPkgGeomWriter().write(g); return toHexString(bytes); }
102103104105106107108109110111112
if (g == null) { ps.setNull(1, Types.BLOB); } else { try { ps.setBytes(column, new GeoPkgGeomWriter().write(g)); } catch (IOException e) { throw new RuntimeException(e); } } }