<div>Is there any JDBC support for geography columns in PostGIS? I am able to cast them to geometry on the select and I assume I can do the same for inserts and updates, but I was wondering if any direct support exists or is planned and I just could not find it.</div>

<div> </div>
<div>So this works:</div>
<div> </div>
<div>ResultSet rs = s.executeQuery("select geog::geometry from table1);</div>
<div>PGgeometry geo = (PGgeometry)rs.getObject(1);</div>
<div> </div>
<div> </div>