Bit #42
In Go, the syntax for SQL parameter placeholder differs depending on your database. MySQL, SQL Server and SQLite use the ? notation, but PostgreSQL uses the $N notation.
For example:
-- MySQLINSERT INTO ... VALUES (?, ?, ?);
-- PostgreSQLINSERT INTO ... VALUES ($1, $2, $3);