You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error happens on the line marked "ERROR" below (mvdb.go:36), re v0.0.0-20181213202341-817cee58a244 (btw, it would be great for this repo to be tagged with its own semantic version releases instead):
db, err := sql.Open("ramsql", "")
if err != nil {
return err
}
defer db.Close()
if err := db.Ping(); err != nil {
return err
}
if _, err := db.Exec("CREATE TABLE address (id int, street text)"); err != nil {
return err
}
stmt, err := db.Prepare("insert into address (id,street) values (?,?)")
if err != nil {
return err
}
for i := 0; i < 10; i++ {
if _, err := stmt.Exec(i, fmt.Sprintf("%d park ave", 100+i)); err != nil { // ERROR
return err
}
}
error happens on the line marked "ERROR" below (mvdb.go:36), re v0.0.0-20181213202341-817cee58a244 (btw, it would be great for this repo to be tagged with its own semantic version releases instead):
and the stack trace is as follows:
The text was updated successfully, but these errors were encountered: