From 88d328aabca16bc231ad5db49b41cd2b01e17094 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Mon, 9 Nov 2009 21:58:55 +0000 Subject: [PATCH] Enable multi statements by default for db connection. Fixes issue #274 (again) --- source/mysql_connection.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/mysql_connection.pas b/source/mysql_connection.pas index f44b7b56..0895d694 100644 --- a/source/mysql_connection.pas +++ b/source/mysql_connection.pas @@ -58,7 +58,7 @@ type TMySQLClientOptions = set of TMySQLClientOption; const - DEFAULT_MYSQLOPTIONS = [opCompress, opLocalFiles, opInteractive, opProtocol41]; + DEFAULT_MYSQLOPTIONS = [opCompress, opLocalFiles, opInteractive, opProtocol41, opMultiStatements]; type TMySQLQuery = class;