Skip to content

Instantly share code, notes, and snippets.

@daqing
Created March 26, 2024 04:20
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 daqing/cbc14752af41cd42548d8fc7f997d343 to your computer and use it in GitHub Desktop.
Save daqing/cbc14752af41cd42548d8fc7f997d343 to your computer and use it in GitHub Desktop.
Go SQLite demo
package main
import (
"database/sql"
"fmt"
"time"
_ "modernc.org/sqlite"
)
const file string = "data/activities.db"
const create string = `
CREATE TABLE IF NOT EXISTS activities (
id INTEGER NOT NULL PRIMARY KEY,
time DATETIME NOT NULL,
description TEXT
);`
func main() {
db, err := sql.Open("sqlite", file)
if err != nil {
panic(err)
}
// if _, err = db.Exec(create); err != nil {
// panic(err)
// }
//
const insert = "INSERT INTO activities VALUES(NULL, ?, ?)"
if _, err = db.Exec(insert, time.Now(), "Demo testing"); err != nil {
panic(err)
}
stmt, err := db.Prepare(insert)
if err != nil {
panic(err)
}
res, err := stmt.Exec(time.Now(), "Demo testing Prepare statement")
if err != nil {
panic(err)
}
id, err := res.LastInsertId()
if err != nil {
panic(err)
}
fmt.Println("Last Row Id:", id)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment