| |
|
| org.geotools.referencing.factory.epsg.DirectEpsgFactory org.geotools.referencing.factory.epsg.AccessDialectEpsgFactory
AccessDialectEpsgFactory | public class AccessDialectEpsgFactory extends DirectEpsgFactory (Code) | | This factory uses the MS-Access dialect of SQL. Because the primary distribution format for the
EPSG database is MS-Access there is very little work to do in our
AccessDialectEpsgFactory.adaptSQL method.
since: 2.4 version: $Id: AccessDialectEpsgFactory.java 26328 2007-07-24 16:57:19Z desruisseaux $ author: Jody Garnett |
Method Summary | |
protected String | adaptSQL(String statement) Invoked when a new
PreparedStatement is about to be created from a SQL string.
Since the EPSG database is available mainly in MS-Access
format, and this is the target of our super class, we have no work to do here.
Parameters: statement - The statement in MS-Access syntax. |
AccessDialectEpsgFactory | public AccessDialectEpsgFactory(Hints userHints, Connection connection)(Code) | | Constructs an authority factory using the specified connection.
Parameters: userHints - The underlying factories used for objects creation. Parameters: connection - The connection to the underlying EPSG database. |
adaptSQL | protected String adaptSQL(String statement)(Code) | | Invoked when a new
PreparedStatement is about to be created from a SQL string.
Since the EPSG database is available mainly in MS-Access
format, and this is the target of our super class, we have no work to do here.
Parameters: statement - The statement in MS-Access syntax. The SQL statement to use. This implementation returns the string unchanged. |
|
|
|