Class H2SQLBuilder
- java.lang.Object
-
- com.vividsolutions.jump.datastore.spatialdatabases.SpatialDatabasesSQLBuilder
-
- com.vividsolutions.jump.datastore.h2.H2SQLBuilder
-
public class H2SQLBuilder extends SpatialDatabasesSQLBuilder
Query builder for H2GIS queries.
-
-
Field Summary
-
Fields inherited from class com.vividsolutions.jump.datastore.spatialdatabases.SpatialDatabasesSQLBuilder
colNames, dbMetadata, defaultSRID
-
-
Constructor Summary
Constructors Constructor Description H2SQLBuilder(SpatialDatabasesDSMetadata dbMetadata, SpatialReferenceSystemID defaultSRID, String[] colNames)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected String
buildBoxFilter(FilterQuery query)
String
getCheckSQL(DataStoreLayer dsLayer)
Returns the query allowing to test a DataStoreLayer: builds a query with where clause and limit 0 to check where clause.protected String
getColumnListSpecifier(String[] colNames, String geomColName)
Returns the string representing a SQL column definition.String
getSQL(FilterQuery query)
Builds a valid SQL spatial query with the given spatial filter.-
Methods inherited from class com.vividsolutions.jump.datastore.spatialdatabases.SpatialDatabasesSQLBuilder
getDbMetadata, getSRID
-
-
-
-
Constructor Detail
-
H2SQLBuilder
public H2SQLBuilder(SpatialDatabasesDSMetadata dbMetadata, SpatialReferenceSystemID defaultSRID, String[] colNames)
-
-
Method Detail
-
getSQL
public String getSQL(FilterQuery query)
Builds a valid SQL spatial query with the given spatial filter.- Overrides:
getSQL
in classSpatialDatabasesSQLBuilder
- Parameters:
query
- a FilterQuery- Returns:
- a SQL query to get column names //TODO: refactor like Oracle code: queries as variable placeholders: put it in base class.
-
getCheckSQL
public String getCheckSQL(DataStoreLayer dsLayer)
Returns the query allowing to test a DataStoreLayer: builds a query with where clause and limit 0 to check where clause.- Overrides:
getCheckSQL
in classSpatialDatabasesSQLBuilder
- Parameters:
dsLayer
- the @link DataStoreLayer to test- Returns:
- a SQL query forced to limit 0 to test the layer source
-
getColumnListSpecifier
protected String getColumnListSpecifier(String[] colNames, String geomColName)
Returns the string representing a SQL column definition. Implementors should take care of column names (case, quotes)- Overrides:
getColumnListSpecifier
in classSpatialDatabasesSQLBuilder
- Parameters:
colNames
- list of columns to getgeomColName
- name of the geometry column- Returns:
- column list as a String
-
buildBoxFilter
protected String buildBoxFilter(FilterQuery query)
- Overrides:
buildBoxFilter
in classSpatialDatabasesSQLBuilder
-
-