Where i find and download this jar file com.mysql.jdbc.GoogleDriver?
Asked Answered
M

1

1

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?

Multiform answered 7/11, 2013 at 6:8 Comment(1)
I added this Jar in my classpath mysql-connector-java-5.1.27-bin.jarMultiform
T
5

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.

Telespectroscope answered 8/11, 2013 at 0:3 Comment(2)
Admittedly a little vague what does that driver do any differently, as opposed to or in addition to what the stock driver (which is used for accessing the cloud database from a local machine) does.Swansea
Any idea why I'm getting this exception after deployment? #37644648Stationery

© 2022 - 2024 — McMap. All rights reserved.