जैसा कि इस ट्यूटोरियल में दिखाया गया है, विकास के दौरान आपको सामान्य mysql ड्राइवर का उपयोग करना चाहिए और केवल एपेंगिन Google mysql ड्राइवर का उपयोग करना चाहिए
if (SystemProperty.environment.value() ==
SystemProperty.Environment.Value.Production) {
// Load the class that provides the new "jdbc:google:mysql://" prefix.
Class.forName("com.mysql.jdbc.GoogleDriver");
url = "jdbc:google:mysql://your-project-id:your-instance-name/guestbook?user=root";
} else {
// Local MySQL instance to use during development.
Class.forName("com.mysql.jdbc.Driver");
url = "jdbc:mysql://127.0.0.1:3306/guestbook?user=root";
}
यह भी दोबारा जांचें कि आपने MySQL Connector/J . को सक्षम किया है आपके आवेदन के लिए (यह डिफ़ॉल्ट रूप से नहीं किया जाता है)
https://developers.google.com/appengine/docs/ जावा/क्लाउड-एसक्यूएल/#enable_connector_j
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
...
<use-google-connector-j>true</use-google-connector-j>
</appengine-web-app>