I am working on setting up a database, building a custom Upsert as Postgresql apparently doesn't have that yet. Anyway my parameters aren't playing nicely.
I am using Martini.
This code:
func CreateBook(ren render.Render, r *http.Request, db *sql.DB) {
_, err := db.Query("INSERT INTO books (title, first, last, class) SELECT $1, $2, $3, $4 WHERE NOT EXISTS (SELECT * FROM books WHERE title = $1)",
r.FormValue("title"),
r.FormValue("first"),
r.FormValue("last"),
r.FormValue("class"))
PanicIf(err)
Throws this error:
pq: inconsistent types deduced for parameter $1
I am fairly certain it's some kind of typecasting issue with the second $1 but none of the rational solutions seem to make sense.
Its a stupid question with hopefully an easy answer but I haven't been able to find any answers anywhere else.
$1
? – Acceleration