I'm connecting to an Oracle 9i database using a Java Client over JDBC.
I perform spatial queries on the database and need to display the results to the user in both Tabular (in a JTable) and graphical (Draw the resulting boundries etc that get returned) formats.
I have the connection set up and data is returned (I am using a ResultsModel class which extends AbstractTableModel to get the column names etc, and I see the Spatial Column is returned), but I don't know how to get the Spatial Data out of the ResultSet.
I'm new to both Java and Oracle Spatial and have the SDOAPI classes etc necessary for managing the data, but am unsure how to use them.