public int init() throws Throwable {
return 0;
}//end of init
public int action() throws Throwable {
String user = "sa" ;
String password = "sa" ;
String sel = "select * from student where id > 950" ;
//String sel = "select * from student" ;
TestJDBC.main(user,password ,sel);
return 0;
}//end of action
public int end() throws Throwable {
return 0;
}//end of end
}