sql >> Databasteknik >  >> RDS >> Mysql

Fel vid anslutning till lokal MySQL-instans från Google App Engine Java.

Se först till att du har aktiverat MySQL Connector/J i appengine-web.xml enligt följande.

<?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>

Använd sedan något liknande kodavsnittet nedan för att ansluta till databasen.

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/your-database?user=root";
} else {
    // Local MySQL instance to use during development.
    Class.forName("com.mysql.jdbc.Driver");
    url = "jdbc:mysql://127.0.0.1:3306/your-database?user=root";

    // Alternatively, connect to a Google Cloud SQL instance using:
    // jdbc:mysql://ip-address-of-google-cloud-sql-instance:3306/your-database?user=root
}

Du kan hitta mer information här .



  1. Olöst symbol:sql::mysql::get_driver_instance(void)

  2. Formatera ett telefonnummer i SQL Server (T-SQL)

  3. Återkommande händelser, SQL-fråga

  4. Schemalagd körning av lagrad procedur på SQL-server