main.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. package main
  2. import (
  3. "context"
  4. "fmt"
  5. "io/ioutil"
  6. "path/filepath"
  7. "github.com/vladimirok5959/golang-sql/gosql"
  8. "github.com/vladimirok5959/golang-sql/gosql/common"
  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 struct here ./db/migrations/20220527233113_test_migration.sql
  29. // Insert some data to users table
  30. if _, err := db.Exec(
  31. context.Background(),
  32. "INSERT INTO users (id, name) VALUES ($1, $2)",
  33. 5, "John",
  34. ); err != nil {
  35. panic(fmt.Sprintf("%s", err))
  36. }
  37. // Select all rows from users table
  38. if rows, err := db.Query(
  39. context.Background(),
  40. "SELECT id, name FROM users ORDER BY id ASC",
  41. ); err == nil {
  42. type rowStruct struct {
  43. ID int64
  44. Name string
  45. }
  46. defer rows.Close()
  47. for rows.Next() {
  48. var row rowStruct
  49. if err := rows.Scan(&row.ID, &row.Name); err != nil {
  50. panic(fmt.Sprintf("%s", err))
  51. }
  52. fmt.Printf("ID: %d, Name: %s\n", row.ID, row.Name)
  53. }
  54. if err := rows.Err(); err != nil {
  55. panic(fmt.Sprintf("%s", err))
  56. }
  57. } else {
  58. panic(fmt.Sprintf("%s", err))
  59. }
  60. // Update inside transaction
  61. if err := db.Transaction(context.Background(), func(ctx context.Context, tx *common.Tx) error {
  62. if _, err := tx.Exec(ctx, "UPDATE users SET name=$1 WHERE id=$2", "John", 1); err != nil {
  63. return err
  64. }
  65. if _, err := tx.Exec(ctx, "UPDATE users SET name=$1 WHERE id=$2", "Alice", 5); err != nil {
  66. return err
  67. }
  68. return nil
  69. }); err != nil {
  70. panic(fmt.Sprintf("%s", err))
  71. }
  72. // Select all rows from users again
  73. if rows, err := db.Query(
  74. context.Background(),
  75. "SELECT id, name FROM users ORDER BY id ASC",
  76. ); err == nil {
  77. type rowStruct struct {
  78. ID int64
  79. Name string
  80. }
  81. defer rows.Close()
  82. for rows.Next() {
  83. var row rowStruct
  84. if err := rows.Scan(&row.ID, &row.Name); err != nil {
  85. panic(fmt.Sprintf("%s", err))
  86. }
  87. fmt.Printf("ID: %d, Name: %s\n", row.ID, row.Name)
  88. }
  89. if err := rows.Err(); err != nil {
  90. panic(fmt.Sprintf("%s", err))
  91. }
  92. } else {
  93. panic(fmt.Sprintf("%s", err))
  94. }
  95. // Close DB connection
  96. if err := db.Close(); err != nil {
  97. panic(fmt.Sprintf("%s", err))
  98. }
  99. }