I'm trying to get all database metadata from an Access database using the UCanAccess JDBC driver but I need to change my resultset type to navigate in the resultset but how to set the good type when my resultset are created with method from the interface databasemetadata ? code here
v_resultPrimaryKey = p_metadata.getPrimaryKeys(null, Tools.getDBName(), p_table);
ResultSet v_resultColumn = p_metadata.getColumns(null, Tools.getDBName(), p_table, null);
v_resultPrimaryKey.first();
String v_pkName = v_resultPrimaryKey.getString("COLUMN_NAME");