Hi All,

In my application I have my own USERS table and this seems to conflict
with the system USERS table.

When I try to get meta data via jdbc, I get a combo of my table and
the system table.

resultSet = metaData.getColumns(null, "", tableName, "%");
while (resultSet.next()) {
        final String columnName = resultSet.getString(4);
}

How can I get the metaData only of my table?

TIA

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to