J
John
Hi,
while (rset.next ())
System.out.println (rset.getString (1));
System.out.println ("Hit enter to continue");
try {
System.in.read();
}
catch (Exception e) {
System.out.println ("Error: " + e.toString());
}
Can anybody tell me how to run a program interactively from within an
IDE like Ecplise? Something like the above, so that I can pass
argument to the code? Thanks!
John
while (rset.next ())
System.out.println (rset.getString (1));
System.out.println ("Hit enter to continue");
try {
System.in.read();
}
catch (Exception e) {
System.out.println ("Error: " + e.toString());
}
Can anybody tell me how to run a program interactively from within an
IDE like Ecplise? Something like the above, so that I can pass
argument to the code? Thanks!
John