mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
85 lines
1.8 KiB
Go
85 lines
1.8 KiB
Go
package driver_test
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/ncruces/go-sqlite3"
|
|
"github.com/ncruces/go-sqlite3/driver"
|
|
_ "github.com/ncruces/go-sqlite3/embed"
|
|
_ "github.com/ncruces/go-sqlite3/vfs/memdb"
|
|
)
|
|
|
|
func Example_json() {
|
|
db, err := driver.Open("file:/json.db?vfs=memdb")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer db.Close()
|
|
|
|
_, err = db.Exec(`
|
|
CREATE TABLE orders (
|
|
cart_id INTEGER PRIMARY KEY,
|
|
user_id INTEGER NOT NULL,
|
|
cart BLOB -- stored as JSONB
|
|
) STRICT;
|
|
`)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
type CartItem struct {
|
|
ItemID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Quantity int `json:"quantity,omitempty"`
|
|
Price int `json:"price,omitempty"`
|
|
}
|
|
|
|
type Cart struct {
|
|
Items []CartItem `json:"items"`
|
|
}
|
|
|
|
// convert to JSONB on insertion
|
|
_, err = db.Exec(`INSERT INTO orders (user_id, cart) VALUES (?, jsonb(?))`, 123, sqlite3.JSON(Cart{
|
|
[]CartItem{
|
|
{ItemID: "111", Name: "T-shirt", Quantity: 1, Price: 250},
|
|
{ItemID: "222", Name: "Trousers", Quantity: 1, Price: 600},
|
|
},
|
|
}))
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
var total string
|
|
err = db.QueryRow(`
|
|
SELECT total(json_each.value -> 'price')
|
|
FROM orders, json_each(cart -> 'items')
|
|
WHERE cart_id = last_insert_rowid()
|
|
`).Scan(&total)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
fmt.Println("total:", total)
|
|
|
|
var cart Cart
|
|
err = db.QueryRow(`
|
|
SELECT json(cart) -- convert to JSON on retrieval
|
|
FROM orders
|
|
WHERE cart_id = last_insert_rowid()
|
|
`).Scan(sqlite3.JSON(&cart))
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
for _, item := range cart.Items {
|
|
fmt.Printf("id: %s, name: %s, quantity: %d, price: %d\n",
|
|
item.ItemID, item.Name, item.Quantity, item.Price)
|
|
}
|
|
|
|
// Output:
|
|
// total: 850
|
|
// id: 111, name: T-shirt, quantity: 1, price: 250
|
|
// id: 222, name: Trousers, quantity: 1, price: 600
|
|
}
|