-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquery_sql.rb
165 lines (147 loc) · 3.96 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
# auto-generated by sqlc - do not edit
require 'connection_pool'
require 'pg'
require 'set'
module PgCodegen
GetAuthorSql = %q(SELECT id, name, bio FROM authors
WHERE id = $1 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 (
$1, $2
)
RETURNING id, name, bio)
class CreateAuthorRow < Data.define(:id, :name, :bio)
end
class CreateAuthorArgs < Data.define(:name, :bio)
end
DeleteAuthorSql = %q(DELETE FROM authors
WHERE id = $1)
class DeleteAuthorArgs < Data.define(:id)
end
TestSql = %q(SELECT c_bit, c_smallint, c_boolean, c_integer, c_bigint, c_serial, c_decimal, c_numeric, c_real, c_double_precision, c_date, c_time, c_timestamp, c_char, c_varchar, c_bytea, c_text, c_json FROM node_postgres_types
LIMIT 1)
class TestRow < Data.define(
:c_bit,
:c_smallint,
:c_boolean,
:c_integer,
:c_bigint,
:c_serial,
:c_decimal,
:c_numeric,
:c_real,
:c_double_precision,
:c_date,
:c_time,
:c_timestamp,
:c_char,
:c_varchar,
:c_bytea,
:c_text,
:c_json
)
end
class QuerySql
def initialize(connection_pool_params, pg_params)
@db = ConnectionPool.new(**connection_pool_params) {
client = PG.connect(**pg_params)
client.type_map_for_results = PG::BasicTypeMapForResults.new client
client
}
@prepared_statements = Set[]
end
def get_author(get_author_args)
@db.with do |client|
query_params = [get_author_args.id]
unless @prepared_statements.include?('get_author')
client.prepare('get_author', GetAuthorSql)
@prepared_statements.add('get_author')
end
result = client.exec_prepared('get_author', 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|
unless @prepared_statements.include?('list_authors')
client.prepare('list_authors', ListAuthorsSql)
@prepared_statements.add('list_authors')
end
result = client.exec_prepared('list_authors')
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]
unless @prepared_statements.include?('create_author')
client.prepare('create_author', CreateAuthorSql)
@prepared_statements.add('create_author')
end
result = client.exec_prepared('create_author', query_params)
row = result.first
return nil if row.nil?
entity = CreateAuthorRow.new(row['id'], row['name'], row['bio'])
return entity
end
end
def delete_author(delete_author_args)
@db.with do |client|
query_params = [delete_author_args.id]
unless @prepared_statements.include?('delete_author')
client.prepare('delete_author', DeleteAuthorSql)
@prepared_statements.add('delete_author')
end
client.exec_prepared('delete_author', query_params)
end
end
def test
@db.with do |client|
unless @prepared_statements.include?('test')
client.prepare('test', TestSql)
@prepared_statements.add('test')
end
result = client.exec_prepared('test')
row = result.first
return nil if row.nil?
entity = TestRow.new(
row['c_bit'],
row['c_smallint'],
row['c_boolean'],
row['c_integer'],
row['c_bigint'],
row['c_serial'],
row['c_decimal'],
row['c_numeric'],
row['c_real'],
row['c_double_precision'],
row['c_date'],
row['c_time'],
row['c_timestamp'],
row['c_char'],
row['c_varchar'],
row['c_bytea'],
row['c_text'],
row['c_json']
)
return entity
end
end
end
end