I am working with Jdbc and CloudSql I followed this tutorial https://developers.google.com/appengine/docs/java/cloud-sql/ when i Load this class com.mysql.jdbc.GoogleDriver
by using class.forName("com.mysql.jdbc.GoogleDriver");
I got
ClassNotFoundException
any one tell me where i download this jar?
You'd use the com.mysql.jdbc.GoogleDriver driver only when running your application on AppEngine.
Is that the case? If so, have you enabled mysql connector/j per https://developers.google.com/appengine/docs/java/cloud-sql/#Java_Connect_to_your_database?
If you're running your application locally, you'd want to use the stock mysql driver.