Browse Source

Add alias, optimize usage

Volodymyr Tkach 2 years ago
parent
commit
df6bfba3ac
2 changed files with 3 additions and 2 deletions
  1. 2 0
      gosql/gosql.go
  2. 1 2
      main.go

+ 2 - 0
gosql/gosql.go

@@ -7,6 +7,8 @@ import (
 	"github.com/vladimirok5959/golang-sql/gosql/engine"
 )
 
+type Tx = common.Tx
+
 func Open(dbURL, migrationsDir string, debug bool) (common.Engine, error) {
 	databaseURL, err := common.ParseUrl(dbURL)
 	if err != nil {

+ 1 - 2
main.go

@@ -7,7 +7,6 @@ import (
 	"path/filepath"
 
 	"github.com/vladimirok5959/golang-sql/gosql"
-	"github.com/vladimirok5959/golang-sql/gosql/common"
 )
 
 func main() {
@@ -66,7 +65,7 @@ func main() {
 	}
 
 	fmt.Println("Update inside transaction")
-	if err := db.Transaction(context.Background(), func(ctx context.Context, tx *common.Tx) error {
+	if err := db.Transaction(context.Background(), func(ctx context.Context, tx *gosql.Tx) error {
 		if _, err := tx.Exec(ctx, "UPDATE users SET name=$1 WHERE id=$2", "John", 1); err != nil {
 			return err
 		}