|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.deegree.sqldialect.oracle.OracleGeometryConverter
public class OracleGeometryConverter
TODO add class documentation here
Constructor Summary | |
---|---|
OracleGeometryConverter(String column,
ICRS crs,
String srid)
Creates a new OracleGeometryConverter instance. |
Method Summary | |
---|---|
ICRS |
getCrs()
|
String |
getSelectSnippet(String tableAlias)
Returns an SQL fragment for SELECTing the particle value from the associated database table. |
String |
getSetSnippet(Geometry particle)
Returns a PreparedStatement fragment for setting the given particle value in an SQL statement. |
String |
getSrid()
|
void |
setParticle(PreparedStatement stmt,
Geometry particle,
int paramIndex)
Converts the given particle and sets the designated SQL parameter in the given PreparedStatement . |
Geometry |
toParticle(ResultSet rs,
int colIndex)
Builds a particle from the specified column of the current row of the given ResultSet . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public OracleGeometryConverter(String column, ICRS crs, String srid)
OracleGeometryConverter
instance.
column
- (unqualified) column that stores the geometry, must not be null
crs
- CRS of the stored geometries, can be null
srid
- Oracle spatial reference identifier, must not be null
Method Detail |
---|
public String getSelectSnippet(String tableAlias)
ParticleConverter
getSelectSnippet
in interface ParticleConverter<Geometry>
tableAlias
- alias that's used for disambiguating the table, may be null
X1.columname
), may be null
public String getSetSnippet(Geometry particle)
ParticleConverter
PreparedStatement
fragment for setting the given particle value in an SQL statement.
The value may be set in a literal SQL fashion (e.g. '2007-08-09') or as a PreparedStatement
placeholder
('?').
getSetSnippet
in interface ParticleConverter<Geometry>
particle
- particle value, can be null
- Returns:
- SQL fragment (e.g.
?
), may be null
public Geometry toParticle(ResultSet rs, int colIndex) throws SQLException
ParticleConverter
ResultSet
.
toParticle
in interface ParticleConverter<Geometry>
rs
- result set, never null
colIndex
- index of the column in the result set
null
SQLException
public void setParticle(PreparedStatement stmt, Geometry particle, int paramIndex) throws SQLException
ParticleConverter
PreparedStatement
.
setParticle
in interface ParticleConverter<Geometry>
stmt
- prepared statement, never null
particle
- particle value, can be nullparamIndex
- index of the SQL parameter in the statement
- Throws:
SQLException
public String getSrid()
getSrid
in interface GeometryParticleConverter
public ICRS getCrs()
getCrs
in interface GeometryParticleConverter
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |