@Brody Wait, I'm actually not opening a new connection each time... I don't think. Becuase I open it once and then make it a global variable called db.
package main
import (
"database/sql"
//"os"
"fmt"
_ "github.com/lib/pq"
)
var db *sql.DB
func InitDB( /*dbname string, password string, host string, port string, user string*/ ) {