I try to create a simple insert statement and get the error:
pq: syntax error at or near ","
txn, err := db.Begin()
stmt, err := db.Prepare(`INSERT INTO advertiser_per_day (id,advertiser_name,additional,customer_id,site_id,tracking,counter,day,month,year) VALUES (?,?,?,?,?,?,?,?,?,?)`)
If I put the statement into a query tool for postgres all works fine... Any ideas?