postgis/jdbc
Markus Schaber 645bdc9689 Patches from Alex Bodnaru (debian maintainer)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1423 b70326c6-7e19-0410-871a-916f4a2858ee
2005-02-22 12:31:31 +00:00
..
examples Compile patch from Markus Schaber 2004-06-22 21:30:58 +00:00
org/postgis Left off a semicolon in previous patch... 2004-10-06 07:19:27 +00:00
Makefile Patches from Alex Bodnaru (debian maintainer) 2005-02-22 12:31:31 +00:00
README Patches to bring example up to current version in terms of SQL access 2002-04-19 15:14:17 +00:00

To use the PostGIS types, you must:
- have the postgis.jar in your CLASSPATH
- have a PostgreSQL JDBC Connection instance

  Connection conn = new Connection();
  ((org.postgresql.Connection)conn).addDataType("geometry","org.postgis.PGgeometry");
  ((org.postgresql.Connection)conn).addDataType("box3d","org.postgis.PGbox3d");

To build the examples:
- put the jar file containing the PostgreSQL JDBC under 
  postgis/original/jars/postgresql.jar
  The file might be named jdbc7.1-1.2.jar originally

- edit the file TestServer.java to adjust the connection information, run
  the test with 'make jtest'