How do I batch sql statements with Go\'s database/sql package?
In Java I would do it like this :
// Create a prepared statement String sql = \"INSERT
Batching is not possible via the interfaces available in database/sql. A particular database driver may support it separately, however. For instance https://github.com/ziutek/mymysql appears to support batching with MySQL.