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
|
const std = @import("std");
const assert = std.debug.assert;
const c = @cImport({
@cInclude("duckdb.h");
});
const Result = @import("Result.zig").Result;
const Connection = @import("Connection.zig");
const PreparedStatement = @import("PreparedStatement.zig");
const Self = @This();
_db: c.duckdb_database,
/// Creates (opens) a new database that needs to call .deinit() later
pub fn init(file: [*c]const u8) !Self{
var db : Self = undefined;
if (c.duckdb_open(file, &db._db) == c.DuckDBError) {
return error.DuckDBError;
}
return db;
}
pub fn deinit(self: *Self) void{
c.duckdb_close(&self._db);
}
/// Returns a new Connection that needs to call .deinit() later
pub fn connect(self: Self) !Connection {
var conn: c.duckdb_connection = undefined;
if( c.duckdb_connect(self._db, &conn) == c.DuckDBError ){
return error.DuckDBError;
}
return Connection.init(conn);
}
test "Open and connect" {
var database = try Self.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
}
test "Simple querying" {
var database = try Self.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
const s : type = comptime struct {
primer: i32, // This is safe because the first column is NOT NULL
segund: ?i32
};
try connection.run("CREATE TABLE integers (i INTEGER NOT NULL, j INTEGER);");
try connection.run("INSERT INTO integers VALUES (3, 4), (5, 6), (7, NULL);");
var result = try connection.query("SELECT * FROM integers;", s);
defer result.deinit();
try std.testing.expect(2 == result.getColumnCount());
var z = try result.next();
try std.testing.expect(z.primer == 3);
try std.testing.expect(z.segund.? == 4);
z = try result.next();
try std.testing.expect(z.primer == 5);
try std.testing.expect(z.segund.? == 6);
z = try result.next();
try std.testing.expect(z.primer == 7);
try std.testing.expect(z.segund == null);
}
test "Simple querying with conversion" {
var database = try Self.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
const s : type = comptime struct {
primer: f64, // Converting to f64
segund: ?i32
};
try connection.run("CREATE TABLE integers (i INTEGER NOT NULL, j INTEGER);");
try connection.run("INSERT INTO integers VALUES (3, 4), (5, 6), (7, NULL);");
var result = try connection.query("SELECT * FROM integers;", s);
defer result.deinit();
try std.testing.expect(2 == result.getColumnCount());
var z = try result.next();
try std.testing.expect(z.primer == 3.0);
try std.testing.expect(z.segund.? == 4);
z = try result.next();
try std.testing.expect(z.primer == 5.0);
try std.testing.expect(z.segund.? == 6);
z = try result.next();
try std.testing.expect(z.primer == 7.0);
try std.testing.expect(z.segund == null);
}
test "All fields are captured" {
var database = try Self.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
const s : type = comptime struct {
primer: ?i32,
segund: ?i32,
tercer: ?i32,
};
try connection.run("CREATE TABLE integers (i INTEGER NOT NULL, j INTEGER);");
try connection.run("INSERT INTO integers VALUES (3, 4), (5, 6), (7, NULL);");
try std.testing.expectError(error.QueryColumnCountCapture,
connection.query("SELECT * FROM integers;", s));
}
test "String queries" {
var database = try Self.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
const s : type = comptime struct {
primer: []const u8
};
try connection.run("CREATE TABLE text (i VARCHAR NOT NULL );");
try connection.run("INSERT INTO text VALUES ('Inlined');");
try connection.run("INSERT INTO text VALUES ('A very long string that is not inlined');");
var result = try connection.query("SELECT * FROM text;", s);
defer result.deinit();
try std.testing.expect(1 == result.getColumnCount());
var w = try result.next();
try std.testing.expect(std.mem.eql(u8, w.primer, "Inlined"));
w = try result.next();
try std.testing.expect(std.mem.eql(u8, w.primer, "A very long string that is not inlined"));
}
test "Prepared queries" {
var database = try Self.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
try connection.run("CREATE TABLE ints (i INTEGER NOT NULL );");
var prepared = try connection.prepareStatement("INSERT INTO ints VALUES (?), (?);");
defer prepared.deinit();
const uno: i32 = 1;
const dos: i32 = 2;
try prepared.bindAll(.{uno, dos});
var res = try prepared.exec(void);
res.deinit();
const s: type = struct {
primer: i32,
};
var result = try connection.query("SELECT * FROM ints;", s);
defer result.deinit();
var r = try result.next();
try std.testing.expect(r.primer == uno);
r = try result.next();
try std.testing.expect(r.primer == dos);
}
test "Prepared queries with strings" {
var database = try Self.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
try connection.run("CREATE TABLE ints (i STRING NOT NULL );");
var prepared = try connection.prepareStatement("INSERT INTO ints VALUES (?), (?);");
defer prepared.deinit();
const uno = "1";
const dos = "2";
try prepared.bindAll(.{uno, dos});
var res = try prepared.exec(void);
res.deinit();
const s: type = struct {
primer: []const u8,
};
var result = try connection.query("SELECT * FROM ints;", s);
defer result.deinit();
var w = try result.next();
try std.testing.expect(std.mem.eql(u8, w.primer, "1"));
w = try result.next();
try std.testing.expect(std.mem.eql(u8, w.primer, "2"));
}
|