Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Abrufen und Festlegen der Datenbankserver-Verbindungsvariable mit JDBC

Haben Sie versucht, es in den getConnection-Aufruf einzufügen?

String url = "jdbc:mysql://localhost/test?user=sqluser&password=sqluserpw&sessionVariables=sql_mode='STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION,PIPES_AS_CONCAT'";
Class.forName("com.mysql.jdbc.Driver");
Connection c = DriverManager.getConnection(url);

Viele Grüße