@@ -3,44 +3,45 @@ Package jet is a complete solution for efficient and high performance database a
3
3
with code generation and automatic query result data mapping.
4
4
Jet currently supports PostgreSQL, MySQL, MariaDB and SQLite. Future releases will add support for additional databases.
5
5
6
-
7
- Installation
8
-
6
+ # Installation
9
7
10
8
Use the command bellow to add jet as a dependency into go.mod project:
9
+
11
10
$ go get -u github.com/go-jet/jet/v2
12
11
13
12
Jet generator can be installed in one of the following ways:
14
13
15
- 1) (Go1.16+) Install jet generator using go install:
16
- go install github.com/go-jet/jet/v2/cmd/jet@latest
14
+ 1. (Go1.16+) Install jet generator using go install:
15
+ go install github.com/go-jet/jet/v2/cmd/jet@latest
17
16
18
- 2) Install jet generator to GOPATH/bin folder:
19
- cd $GOPATH/src/ && GO111MODULE=off go get -u github.com/go-jet/jet/cmd/jet
17
+ 2. Install jet generator to GOPATH/bin folder:
18
+ cd $GOPATH/src/ && GO111MODULE=off go get -u github.com/go-jet/jet/cmd/jet
20
19
21
- 3) Install jet generator into specific folder:
22
- git clone https://github.com/go-jet/jet.git
23
- cd jet && go build -o dir_path ./cmd/jet
20
+ 3. Install jet generator into specific folder:
21
+ git clone https://github.com/go-jet/jet.git
22
+ cd jet && go build -o dir_path ./cmd/jet
24
23
25
24
Make sure that the destination folder is added to the PATH environment variable.
26
25
27
-
28
- Usage
29
-
26
+ # Usage
30
27
31
28
Jet requires already defined database schema(with tables, enums etc), so that jet generator can generate SQL Builder
32
29
and Model files. File generation is very fast, and can be added as every pre-build step.
33
30
Sample command:
31
+
34
32
jet -dsn=postgresql://user:pass@localhost:5432/jetdb -schema=dvds -path=./.gen
35
33
36
34
Before we can write SQL queries in Go, we need to import generated SQL builder and model types:
35
+
37
36
import . "some_path/.gen/jetdb/dvds/table"
38
37
import "some_path/.gen/jetdb/dvds/model"
39
38
40
39
To write postgres SQL queries we import:
40
+
41
41
. "github.com/go-jet/jet/v2/postgres" // Dot import is used so that Go code resemble as much as native SQL. It is not mandatory.
42
42
43
43
Then we can write the SQL query:
44
+
44
45
// sub-query
45
46
rRatingFilms :=
46
47
SELECT(
@@ -72,6 +73,7 @@ Then we can write the SQL query:
72
73
)
73
74
74
75
Now we can run the statement and store the result into desired destination:
76
+
75
77
var dest []struct {
76
78
model.Film
77
79
@@ -81,9 +83,11 @@ Now we can run the statement and store the result into desired destination:
81
83
err := stmt.Query(db, &dest)
82
84
83
85
We can print a statement to see SQL query and arguments sent to postgres server:
86
+
84
87
fmt.Println(stmt.Sql())
85
88
86
89
Output:
90
+
87
91
SELECT "rFilms"."film.film_id" AS "film.film_id",
88
92
"rFilms"."film.title" AS "film.title",
89
93
"rFilms"."film.rating" AS "film.rating",
0 commit comments