Where do I find and download this jar file com.mysql.jdbc.GoogleDriver?

I am working with Jdbc and CloudSql. I am following this tutorial https://developers.google.com/appengine/docs/java/cloud-sql/ when I load this class with com.mysql.jdbc.GoogleDriver

class.forName("com.mysql.jdbc.GoogleDriver");

I got

ClassNotFoundException 

      

somebody tell me where i download this jar?

+1


source to share


1 answer


You are using the com.mysql.jdbc.GoogleDriver driver only when you run your application in AppEngine.

This is true? If so, have you enabled the mysql / j connection behind https://developers.google.com/appengine/docs/java/cloud-sql/#Java_Connect_to_your_database ?



If you are running your application locally, you must use the backup mysql driver.

+5


source







All Articles