Where i find and download this jar file com.mysql.

2019-07-29 05:37发布

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?

1条回答
淡お忘
2楼-- · 2019-07-29 06:11

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.

查看更多
登录 后发表回答