*/
public ResultSet getSchemas() throws SQLException {
dmetaLog("getSchemas 0 ");
Vector v = new Vector();
Row r = new Row();
//r.setRowId("1");
//r.put("tablename","information_schema");
//v.add(r);
r = new Row();
r.put("tablename","jiql");
r.put("TABLE_CATALOG","jiql");
r.setRowId("2");
v.add(r);
SQLParser sqp = new SQLParser("TABLE_SCHEM",connection);
sqp.setAction("showTables");