Re: MySql Connection Problem

2011-12-01 Thread Ahmet Dakoglu
I had the same problem and find out that if you use GAE in your project this error occurs so it is not related with your url format. http://stackoverflow.com/questions/6773186/java-sql-sqlexception-url-is-not-in-the-correct-format On Wed, Nov 30, 2011 at 4:01 PM, mpp4manu mp4...@att.com wrote:

Re: MySql Connection Problem

2011-11-30 Thread mpp4manu
I am new to GWT and Java programming in general. I have am using Apache Geronimo to set up database pools. Once I understood how to use them, my database connectivity issues went away. Here is part 1 of a 2 part tutorial on GWT, Geronimo and MySQL:

Re: MySql Connection Problem

2011-11-06 Thread Brandon Donnelson
/** * db conn * * Make sure you add a reference library (external jar in build path) JDBC Connector - * You will see I put it in /opt/gwt-linux/mysql-connector-java-5.0.8-bin.jar * * @return Connection */ private Connection getConn() { Connection conn = null;

Re: MySql Connection Problem

2011-11-04 Thread sasindran erambra
I am try to this url but not working it shows the same error again and again. any way thanks mukut to responding to my question. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

MySql Connection Problem

2011-11-03 Thread sasi sasindran
Hi all, I am created a sample gwt rpc client server database project.When am retrieving data from database it throw an exception given below. MySql Connection Error: java.sql.SQLException: URL is not in the correct format: jdbc:mysql:// localhost/db at

Re: MySql Connection Problem

2011-11-03 Thread mukut
Use this format in ur connection url. jdbc:mysql://localhost:3306/dbschema I hope this resolves u r issues. Thanks and Regards, Mukut On Thu, Nov 3, 2011 at 12:18 PM, sasi sasindran sasindran@gmail.comwrote: Hi all, I am created a sample gwt rpc client server database project.When