Posted By:
Al_Kent
Posted On:
Tuesday, August 7, 2001 09:27 AM
I'm trying to extract content from a msaccess database through a type 3 driver from netdirect. I can connect to the database succesfully but can't retrieve the table names no matter what i try. I've tried the following -
ResultSet mrs = null;
mrs = dbmd.getTables(null, null, null, null);
mrs = dbmd.getTables(null, null, null, new String[] { "TABLE" });
mrs = dbmd.getTables(null, null, '%', new String[] { "TABLE" });
Any ideas or work arounds are appreciated.