Skip to content

Instantly share code, notes, and snippets.

@shumon84
Last active November 22, 2018 01:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shumon84/f83543832a3df58934b1c45fff32da52 to your computer and use it in GitHub Desktop.
Save shumon84/f83543832a3df58934b1c45fff32da52 to your computer and use it in GitHub Desktop.
tx, _ := db.Begin()
tx.Exec("INSERT INTO hoge (id) VALUES (?)", "0000")
tx.Query("SELECT * FROM hoge WHERE id = ?", "0000")
tx.QueryRow("SELECT * FROM hoge")
tx.Commit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment