Enable multi statements by default for db connection. Fixes issue #274 (again)

This commit is contained in:
Ansgar Becker
2009-11-09 21:58:55 +00:00
parent 88d7adffad
commit 88d328aabc

View File

@ -58,7 +58,7 @@ type
TMySQLClientOptions = set of TMySQLClientOption; TMySQLClientOptions = set of TMySQLClientOption;
const const
DEFAULT_MYSQLOPTIONS = [opCompress, opLocalFiles, opInteractive, opProtocol41]; DEFAULT_MYSQLOPTIONS = [opCompress, opLocalFiles, opInteractive, opProtocol41, opMultiStatements];
type type
TMySQLQuery = class; TMySQLQuery = class;