Hi,

> my case there's a conflict because my
> table is called USERS.

No, that's not the problem.

In your first post you correctly used:
metaData.getColumns(null, "", "COLUMNS", "%");

Unfortunately now you use:
metaData.getColumns(null, null, "COLUMNS", "%");

See the JDBC specification:
schemaPattern - a schema name pattern; must match the schema name as
it is stored in the database; "" retrieves those without a schema;
null means that the schema name should not be used to narrow the
search

So you need to use "" not null.

Regards,
Thomas

--~--~---------~--~----~------------~-------~--~----~
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