Mysql
 sql >> Database >  >> RDS >> Mysql

Ottieni e IMPOSTA la variabile di connessione del server database con JDBC

Hai provato ad aggiungerlo alla chiamata getConnection?

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);

Saluti