-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
53 lines (39 loc) · 928 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
import (
"database/sql"
_ "github.com/go-sql-driver/mysql" // o underline serve para não remover a dependencia do driver que não esta sendo usada diretamente
"github.com/google/uuid"
)
type Product struct {
ID string
Name string
Price float64
}
func NewProduct(name string, price float64) *Product {
return &Product{
ID: uuid.New().String(),
Name: name,
Price: price,
}
}
func main() {
db, err := sql.Open("mysql", "root:root@tcp(localhost:3306)/goexpert")
if err != nil {
panic(err)
}
defer db.Close()
product1 := NewProduct("Arroz", 30.50)
InsertProduct(db, *product1)
}
func InsertProduct(db *sql.DB, product Product) error {
cmd, err := db.Prepare("INSERT INTO products (id, name, price) VALUES (?,?,?)")
if err != nil {
return err
}
defer cmd.Close()
_, err = cmd.Exec(product.ID, product.Name, product.Price)
if err != nil {
return err
}
return nil
}