|
You were saying that you'd like to make the Repair
tool more accessable to the Control API.
I was also wondering if you could do the same thing
for the Diagnostics tool.
Right now it's not hard to get either the Repair or
Diagnostics tool running:
String args[] = { "-path", myDataPath
};
com.mckoi.tools.DBConglomerateDiagTool.main(args);
With the repair, I am fiddling with changing
System.out to display in a TextArea so I can watch the process from my jar
program.
my problem is with the diagnostics
program:
It System.exit(0)'s at the end of it all, closing
down the VM. Not good if you're calling it from another
program.
you were kind enough to provide this capability
with the Query tool:
com.mckoi.tools.JDBCQueryTool.createNewWindow(myConnection,true,false);
Also, with the diagnostics program, what about
having the Info->Table Statistics get shown in a dialog instead of
System.out?
|