Hi Henry,
I am not exactly sure what you mean. It sounds like you just want to get
the column_name values of the geometry_columns table? This is done with
a standard result set:
Statement st = ..;
ResultSet rs = st.executeQuery("SELECT column_name from geomtrey_columns");
while(rs.next()) {
Hi all,
My name is Henry, I am a developer for Ingres working on the UCOSP project
along with Lim, Anthony, and Xiaoxiao. I am trying to retrieve the
"column_name" field in the "geometry_columns" table in the database. I am
calling this from the getMapping method of the IngresDialect class. Whe