db_get_helpers.anubis
6.36 KB
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*
* Created by PyramIDE.
* User: フランスのトトロ aka (David RENÉ)
* Date: 15/12/2019
* Time: 13:32
* © David RENÉ
*/
read tools/basis.anubis
read system/logger.anubis
read xlib/net_services_protocols/logger_client.anubis
read system/string.anubis
read data_base/db_tools.anubis
read data_base/sqlite.anubis
transmit xlib/database/db_types.anubis
// -- Extractors HELPERS ---------------
// sqlite3 API
public define String
db_get_String
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_String")); "",
no_more_row then "", //can't find the symbol in the table, because the row is empty
row(explorer) then text(explorer)(0)
}
.
public define List(String)
db_get_List_String
(
One -> DbRow table_cursor,
List(String) so_far
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_string_list")); reverse(so_far),
no_more_row then reverse(so_far), //can't find the symbol in the table, because the row is empty
row(explorer) then
with s = text(explorer)(0),
db_get_List_String(table_cursor, [s . so_far])
}.
// sqlite3 API
public define List(String)
db_get_List_String
(
One -> SQLite3Row table_cursor,
List(String) so_far
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_string_list")); reverse(so_far),
no_more_row then reverse(so_far), //can't find the symbol in the table, because the row is empty
row(explorer) then
with s = text(explorer)(0),
db_get_List_String(table_cursor, [s . so_far])
}.
// sqlite3 API
public define List(String)
db_get_List_String
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_string_list")); [],
no_more_row then [], //can't find the symbol in the table, because the row is empty
row(explorer) then
with s = text(explorer)(0),
[ s . db_get_List_String(table_cursor)]
}.
public define Bool
db_get_Bool
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_Bool")); false,
no_more_row then false, //can't find the symbol in the table, because the row is empty
row(explorer) then db_bool(explorer)(0)
}
.
// sqlite3 API
public define Int
db_get_Int
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_integer")); 0,
no_more_row then 0,
row(explorer) then (Int)db_integer(explorer)(0)
}
.
public define Maybe(Int)
db_get_mb_Int
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_mb_integer")); failure,
no_more_row then failure,
row(explorer) then db_integer(explorer)(0)
}.
// sqlite3 API
public define List(Int)
db_get_List_Int
(
One -> SQLite3Row table_cursor,
List(Int) so_far
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_integer_list")); reverse(so_far),
no_more_row then reverse(so_far), //can't find the symbol in the table, because the row is empty
row(explorer) then
with s = (Int)db_integer(explorer)(0),
db_get_List_Int(table_cursor, [s . so_far])
}.
public define List(Int)
db_get_List_Int
(
One -> SQLite3Row table_cursor
) =
db_get_List_Int(table_cursor, []).
// sqlite3 API
public define Float
db_get_Float
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_Float")); 0.0,
no_more_row then 0.0,
row(explorer) then db_float(explorer)(0)
}.
// sqlite3 API
public define DB_id
db_get_DB_id
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_DB_id")); none,
no_more_row then none,
row(explorer) then
with result = (Int)db_integer(explorer)(0),
if result = -1 | result = 0 then none else db_id(result)
}
.
public define Maybe(DB_id)
db_get_mb_DB_id
(
One -> SQLite3Row table_cursor
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_mb_DB_id")); failure,
no_more_row then failure,
row(explorer) then
with result = (Int)db_integer(explorer)(0),
if result = -1 | result = 0 then success(none) else success(db_id(result))
}
.
// sqlite3 API
public define List(DB_id)
db_get_List_DB_id
(
One -> SQLite3Row table_cursor,
List(DB_id) so_far
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_List_DB_id")); reverse(so_far),
no_more_row then reverse(so_far), //can't find the symbol in the table, because the row is empty
row(explorer) then
with result = (Int)db_integer(explorer)(0),
db_get_List_DB_id(table_cursor, [db_id(result) . so_far])
}.
public define List(DB_id)
db_get_List_DB_id
(
One -> SQLite3Row table_cursor
) =
db_get_List_DB_id(table_cursor, []).
/***********************************/
/* SQLAPI */
public define List(Int)
db_get_List_Int
(
One -> DbRow table_cursor,
List(Int) so_far
) =
if table_cursor(unique) is
{
error(sql_error) then logError("", "DB", db_error(sql_error, "db_get_integer_list")); reverse(so_far),
no_more_row then reverse(so_far), //can't find the symbol in the table, because the row is empty
row(explorer) then
with s = (Int)db_integer(explorer)(0),
db_get_List_Int(table_cursor, [s . so_far])
}.
public define List(Int)
db_get_List_Int
(
One -> DbRow table_cursor,
) =
db_get_List_Int(table_cursor, []).
Help to construct clause and a list of bind according to list of SQLite3_update_field.
This is useful when we want to construct a SQL query with only needs fields.