Package org.postgis.jts
Class JtsWrapper
- java.lang.Object
-
- org.postgresql.Driver
-
- org.postgis.jts.JtsWrapper
-
- All Implemented Interfaces:
Driver
public class JtsWrapper extends org.postgresql.DriverJtsWrapper Wraps the PostGreSQL Driver to add the JTS/PostGIS Object Classes. This method currently works with J2EE DataSource implementations, and with DriverManager framework. Simply replace the "jdbc:postgresql:" with a "jdbc:postgres_jts:" in the jdbc URL. When using the drivermanager, you need to initialize JtsWrapper instead of (or in addition to) org.postgresql.Driver. When using a J2EE DataSource implementation, set the driver class property in the datasource config, the following works for jboss: <driver-class>org.postgis.jts.PostGisWrapper</driver-class>- Author:
- markus.schaber@logix-tt.com
-
-
Constructor Summary
Constructors Constructor Description JtsWrapper()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanacceptsURL(String url)Check whether the driver thinks he can handle the given URL.static voidaddGISTypes(org.postgresql.PGConnection pgconn)Adds the JTS/PostGIS Data types to a PG Connection.Connectionconnect(String url, Properties info)Creates a postgresql connection, and then adds the JTS GIS data types to it calling addpgtypes()intgetMajorVersion()Gets the underlying drivers major version numberintgetMinorVersion()Get the underlying drivers minor version numberstatic StringgetVersion()Returns our own CVS version plus postgres Versionstatic StringmangleURL(String url)Mangles the PostGIS URL to return the original PostGreSQL URL
-
-
-
Field Detail
-
logger
protected static final Logger logger
-
REVISION
public static final String REVISION
- See Also:
- Constant Field Values
-
-
Method Detail
-
connect
public Connection connect(String url, Properties info) throws SQLException
Creates a postgresql connection, and then adds the JTS GIS data types to it calling addpgtypes()- Specified by:
connectin interfaceDriver- Overrides:
connectin classorg.postgresql.Driver- Parameters:
url- the URL of the database to connect toinfo- a list of arbitrary tag/value pairs as connection arguments- Returns:
- a connection to the URL or null if it isnt us
- Throws:
SQLException- if a database access error occurs- See Also:
Driver.connect(java.lang.String, java.util.Properties),Driver
-
addGISTypes
public static void addGISTypes(org.postgresql.PGConnection pgconn) throws SQLExceptionAdds the JTS/PostGIS Data types to a PG Connection.- Parameters:
pgconn- The PGConnection object to add the types to- Throws:
SQLException- when an SQLException occurs
-
mangleURL
public static String mangleURL(String url) throws SQLException
Mangles the PostGIS URL to return the original PostGreSQL URL- Parameters:
url- String containing the url to be "mangled"- Returns:
- "mangled" string
- Throws:
SQLException- when a SQLException occurs
-
acceptsURL
public boolean acceptsURL(String url)
Check whether the driver thinks he can handle the given URL.- Specified by:
acceptsURLin interfaceDriver- Overrides:
acceptsURLin classorg.postgresql.Driver- Parameters:
url- the URL of the driver- Returns:
- true if this driver accepts the given URL
- See Also:
Driver.acceptsURL(java.lang.String)
-
getMajorVersion
public int getMajorVersion()
Gets the underlying drivers major version number- Specified by:
getMajorVersionin interfaceDriver- Overrides:
getMajorVersionin classorg.postgresql.Driver- Returns:
- the drivers major version number
-
getMinorVersion
public int getMinorVersion()
Get the underlying drivers minor version number- Specified by:
getMinorVersionin interfaceDriver- Overrides:
getMinorVersionin classorg.postgresql.Driver- Returns:
- the drivers minor version number
-
getVersion
public static String getVersion()
Returns our own CVS version plus postgres Version- Returns:
- String representation of the version
-
-