import java.sql.Connection; import com.mysql.jdbc.util.BaseBugReport; /** * @author BEAUCHAR * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class MyBugReport extends BaseBugReport { /* (non-Javadoc) * @see com.mysql.jdbc.util.BaseBugReport#getUrl() */ public String getUrl() { // TODO Auto-generated method stub return super.getUrl() + "?useConfigs=3-0-Compat"; } /** * */ public MyBugReport() { super(); // TODO Auto-generated constructor stub } /* (non-Javadoc) * @see com.mysql.jdbc.util.BaseBugReport#setUp() */ public void setUp() throws Exception { // TODO Auto-generated method stub } /* (non-Javadoc) * @see com.mysql.jdbc.util.BaseBugReport#tearDown() */ public void tearDown() throws Exception { // TODO Auto-generated method stub } /* (non-Javadoc) * @see com.mysql.jdbc.util.BaseBugReport#runTest() */ public void runTest() throws Exception { // TODO Auto-generated method stub getConnection(); } public static void main(String[] args) throws Exception { new MyBugReport().run(); } }