-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquery_sql.rb
209 lines (186 loc) · 4.62 KB
/
query_sql.rb
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# auto-generated by sqlc - do not edit
require 'connection_pool'
require 'mysql2'
module Mysql2Codegen
GetAuthorSql = %q(SELECT id, name, bio FROM authors
WHERE id = ? LIMIT 1)
class GetAuthorRow < Data.define(:id, :name, :bio)
end
class GetAuthorArgs < Data.define(:id)
end
ListAuthorsSql = %q(SELECT id, name, bio FROM authors
ORDER BY name)
class ListAuthorsRow < Data.define(:id, :name, :bio)
end
CreateAuthorSql = %q(INSERT INTO authors (
name, bio
) VALUES (
?, ?
))
class CreateAuthorArgs < Data.define(:name, :bio)
end
UpdateAuthorSql = %q(UPDATE authors
SET bio = ?
WHERE id = ?)
class UpdateAuthorArgs < Data.define(:bio, :id)
end
CreateAuthorReturnIdSql = %q(INSERT INTO authors (
name, bio
) VALUES (
?, ?
))
class CreateAuthorReturnIdArgs < Data.define(:name, :bio)
end
DeleteAuthorSql = %q(DELETE FROM authors
WHERE id = ?)
class DeleteAuthorArgs < Data.define(:id)
end
TestSql = %q(SELECT c_bit, c_tinyint, c_bool, c_boolean, c_smallint, c_mediumint, c_int, c_integer, c_bigint, c_serial, c_decimal, c_dec, c_numeric, c_fixed, c_float, c_double, c_double_precision, c_date, c_time, c_datetime, c_timestamp, c_year, c_char, c_nchar, c_national_char, c_varchar, c_binary, c_varbinary, c_tinyblob, c_tinytext, c_blob, c_text, c_mediumblob, c_mediumtext, c_longblob, c_longtext, c_json FROM node_mysql_types
LIMIT 1)
class TestRow < Data.define(
:c_bit,
:c_tinyint,
:c_bool,
:c_boolean,
:c_smallint,
:c_mediumint,
:c_int,
:c_integer,
:c_bigint,
:c_serial,
:c_decimal,
:c_dec,
:c_numeric,
:c_fixed,
:c_float,
:c_double,
:c_double_precision,
:c_date,
:c_time,
:c_datetime,
:c_timestamp,
:c_year,
:c_char,
:c_nchar,
:c_national_char,
:c_varchar,
:c_binary,
:c_varbinary,
:c_tinyblob,
:c_tinytext,
:c_blob,
:c_text,
:c_mediumblob,
:c_mediumtext,
:c_longblob,
:c_longtext,
:c_json
)
end
class QuerySql
def initialize(connection_pool_params, mysql2_params)
@db = ConnectionPool.new(**connection_pool_params) {
Mysql2::Client.new(**mysql2_params)
}
end
def get_author(get_author_args)
@db.with do |client|
query_params = [get_author_args.id]
stmt = client.prepare(GetAuthorSql)
result = stmt.execute(*query_params)
row = result.first
return nil if row.nil?
entity = GetAuthorRow.new(row['id'], row['name'], row['bio'])
return entity
end
end
def list_authors
@db.with do |client|
stmt = client.prepare(ListAuthorsSql)
result = stmt.execute
entities = []
result.each do |row|
entities << ListAuthorsRow.new(row['id'], row['name'], row['bio'])
end
return entities
end
end
def create_author(create_author_args)
@db.with do |client|
query_params = [create_author_args.name, create_author_args.bio]
stmt = client.prepare(CreateAuthorSql)
stmt.execute(*query_params)
end
end
def update_author(update_author_args)
@db.with do |client|
query_params = [update_author_args.bio, update_author_args.id]
stmt = client.prepare(UpdateAuthorSql)
stmt.execute(*query_params)
end
end
def create_author_return_id(create_author_return_id_args)
@db.with do |client|
query_params = [create_author_return_id_args.name, create_author_return_id_args.bio]
stmt = client.prepare(CreateAuthorReturnIdSql)
stmt.execute(*query_params)
return client.last_id
end
end
def delete_author(delete_author_args)
@db.with do |client|
query_params = [delete_author_args.id]
stmt = client.prepare(DeleteAuthorSql)
stmt.execute(*query_params)
end
end
def test
@db.with do |client|
stmt = client.prepare(TestSql)
result = stmt.execute
row = result.first
return nil if row.nil?
entity = TestRow.new(
row['c_bit'],
row['c_tinyint'],
row['c_bool'],
row['c_boolean'],
row['c_smallint'],
row['c_mediumint'],
row['c_int'],
row['c_integer'],
row['c_bigint'],
row['c_serial'],
row['c_decimal'],
row['c_dec'],
row['c_numeric'],
row['c_fixed'],
row['c_float'],
row['c_double'],
row['c_double_precision'],
row['c_date'],
row['c_time'],
row['c_datetime'],
row['c_timestamp'],
row['c_year'],
row['c_char'],
row['c_nchar'],
row['c_national_char'],
row['c_varchar'],
row['c_binary'],
row['c_varbinary'],
row['c_tinyblob'],
row['c_tinytext'],
row['c_blob'],
row['c_text'],
row['c_mediumblob'],
row['c_mediumtext'],
row['c_longblob'],
row['c_longtext'],
row['c_json']
)
return entity
end
end
end
end