Re: JDBC org.gjt.mm.mysql.Driver : Classnotfound

2010-07-02 Thread Hotkey
Thanks for the replies. I've currently solved the problem by disabling Use Google App Engine. After that i got other exceptions which i managed to solve by removing certain jar files out of the Build Path manually (relating to Google App Engine). On 2 Jul., 02:59, mdwarne mike.wa...@gmail.com

Re: JDBC org.gjt.mm.mysql.Driver : Classnotfound

2010-07-01 Thread leslie
That is a very old driver for MySQL. Unless the database version and the corresponding driver are quite old, you are probably using a newer driver and the class name will be different. Try using com.mysql.jdbc.Driver instead of org.gjt.mm.mysql.Driver. -- You received this message because you

Re: JDBC org.gjt.mm.mysql.Driver : Classnotfound

2010-07-01 Thread mdwarne
Are you trying to load the driver in the Server Code, or in the Client? You can not connect to a database from the Client Code (Browser javascript), only from the Server code. I am using MySql in my projects using RPC (Servlet). In my RPC servlet I have code like this that works fine

JDBC org.gjt.mm.mysql.Driver : Classnotfound

2010-06-30 Thread Hotkey
Dear All, this is my first post in this group, hopefully i'm not doing anything wrong. I've searched for this topic but didn't found any solution. I'm quity new to GWT and are currently writing my first Client/Server example. Actually i want to read some Data from a database but i didn't get the