GUACAMOLE-76: Set "allowMultiQueries" for MySQL.

This commit is contained in:
Michael Jumper
2016-08-20 12:41:16 -07:00
parent a83b5c585c
commit 2e3d3c4f5f

View File

@@ -72,6 +72,8 @@ public class MySQLAuthenticationProviderModule implements Module {
// Use UTF-8 in database
driverProperties.setProperty("characterEncoding","UTF-8");
// Allow use of multiple statements within a single query
driverProperties.setProperty("allowMultiQueries", "true");
}