From: Marco Zanon Date: Thu, 15 Nov 2018 13:05:00 +0000 (+0000) Subject: Fixed a typo (missing spaces). X-Git-Tag: SVN-to-Git~51 X-Git-Url: https://gitweb.marcozanon.com/?a=commitdiff_plain;h=6ac09616fa3803d3c900ad8f6cd2a26f464a7376;p=Macaco Fixed a typo (missing spaces). --- diff --git a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java index 9e5e2c2..6839866 100644 --- a/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java +++ b/6.x/src/java/com/marcozanon/macaco/database/MDatabaseConnection.java @@ -86,8 +86,8 @@ public class MDatabaseConnection extends MObject { } // Set SQL mode to standard ANSI and TRADITIONAL. try { - this.getConnection().createStatement().executeUpdate("SET SQL_MODE='ANSI,TRADITIONAL'"); - this.logStatement("### SET SQL_MODE='ANSI,TRADITIONAL' ###"); + this.getConnection().createStatement().executeUpdate("SET SQL_MODE = 'ANSI,TRADITIONAL'"); + this.logStatement("### SET SQL_MODE = 'ANSI,TRADITIONAL' ###"); } catch (SQLException exception) { throw new MDatabaseConnectionFailureException("Could not set SQL mode to ANSI and TRADITIONAL.", exception);