mrs=dbm.getTables(null,"app",null,null);
mrs=dbm.getImportedKeys(null,"APP","policy");
Check the case of your names. Possibly these should be "APP" and "POLICY", respectively. Schema names, table names, column names, etc. are case sensitive when passed to the DatabaseMetaData calls. thanks, bryan
