main.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package main
  2. import (
  3. "context"
  4. "fmt"
  5. "io/ioutil"
  6. "path/filepath"
  7. "time"
  8. "github.com/vladimirok5959/golang-sql/gosql"
  9. )
  10. func main() {
  11. // Get temp file name
  12. f, err := ioutil.TempFile("", "go-sqlite-")
  13. if err != nil {
  14. panic(fmt.Sprintf("%s", err))
  15. }
  16. f.Close()
  17. // Set migration directory
  18. migrationsDir, err := filepath.Abs("./db/migrations")
  19. if err != nil {
  20. panic(fmt.Sprintf("%s", err))
  21. }
  22. // Open DB connection, SQLite is used as example
  23. // You can use here MySQL or PostgreSQL, just change dbURL
  24. db, err := gosql.Open("sqlite://"+f.Name(), migrationsDir, true)
  25. if err != nil {
  26. panic(fmt.Sprintf("%s", err))
  27. }
  28. db.SetConnMaxLifetime(time.Minute * 60)
  29. db.SetMaxIdleConns(8)
  30. db.SetMaxOpenConns(8)
  31. // DB struct here ./db/migrations/20220527233113_test_migration.sql
  32. fmt.Println("Insert some data to users table")
  33. if _, err := db.Exec(
  34. context.Background(),
  35. "INSERT INTO users (id, name) VALUES ($1, $2)",
  36. 5, "John",
  37. ); err != nil {
  38. panic(fmt.Sprintf("%s", err))
  39. }
  40. fmt.Println("Select all rows from users table")
  41. if rows, err := db.Query(
  42. context.Background(),
  43. "SELECT id, name FROM users ORDER BY id ASC",
  44. ); err == nil {
  45. type rowStruct struct {
  46. ID int64
  47. Name string
  48. }
  49. defer rows.Close()
  50. for rows.Next() {
  51. var row rowStruct
  52. if err := rows.Scan(&row.ID, &row.Name); err != nil {
  53. panic(fmt.Sprintf("%s", err))
  54. }
  55. fmt.Printf("ID: %d, Name: %s\n", row.ID, row.Name)
  56. }
  57. if err := rows.Err(); err != nil {
  58. panic(fmt.Sprintf("%s", err))
  59. }
  60. } else {
  61. panic(fmt.Sprintf("%s", err))
  62. }
  63. fmt.Println("Update inside transaction")
  64. if err := db.Transaction(context.Background(), func(ctx context.Context, tx *gosql.Tx) error {
  65. if _, err := tx.Exec(ctx, "UPDATE users SET name=$1 WHERE id=$2", "John", 1); err != nil {
  66. return err
  67. }
  68. if _, err := tx.Exec(ctx, "UPDATE users SET name=$1 WHERE id=$2", "Alice", 5); err != nil {
  69. return err
  70. }
  71. return nil
  72. }); err != nil {
  73. panic(fmt.Sprintf("%s", err))
  74. }
  75. fmt.Println("Select all rows from users again")
  76. if err := db.Each(
  77. context.Background(),
  78. "SELECT id, name FROM users ORDER BY id ASC",
  79. func(ctx context.Context, rows *gosql.Rows) error {
  80. var row struct {
  81. ID int64
  82. Name string
  83. }
  84. if err := rows.Scans(&row); err != nil {
  85. return err
  86. }
  87. fmt.Printf("ID: %d, Name: %s\n", row.ID, row.Name)
  88. return nil
  89. },
  90. ); err != nil {
  91. panic(fmt.Sprintf("%s", err))
  92. }
  93. // Close DB connection
  94. if err := db.Close(); err != nil {
  95. panic(fmt.Sprintf("%s", err))
  96. }
  97. }