I\'m trying to find a MySql driver that i can use with Go which supports issuing multiple SQL statements in one call. For example i might wish to create a database using the
the github.com/go-sql-driver/mysql can be configured to accept multiple statements with the multiStatements=true connection parameter.
github.com/go-sql-driver/mysql
multiStatements=true
The documentation clearly states why you should be careful doing it. See https://github.com/go-sql-driver/mysql