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
|
const std = @import("std");
const assert = std.debug.assert;
const c = @cImport({
@cInclude("duckdb.h");
});
const Result = @import("Result.zig").Result;
const PreparedStatement = @import("PreparedStatement.zig");
const Connection = struct {
_conn: c.duckdb_connection,
pub fn init(db: Database) !Connection {
var conn: Connection = undefined;
if( c.duckdb_connect(db._db, &conn._conn) == c.DuckDBError ){
return error.DuckDBError;
}
return conn;
}
pub fn deinit(self: *Connection) void {
c.duckdb_disconnect(&self._conn);
}
/// Query returning a result. Caller needs to call result.deinit()
pub fn query(self: *Connection, q: [:0]const u8, comptime res_type: type)
!Result(res_type) {
var result: c.duckdb_result = undefined;
const state = c.duckdb_query(self._conn, q, &result);
if ( state == c.DuckDBError ){
return error.DuckDBError;
}
return try Result(res_type).init(result);
}
/// Query with no results and autoclean
pub fn run(self: *Connection, q: [:0]const u8) !void{
var x = try self.query(q, void);
defer x.deinit();
}
/// Make a prepared query. Caller needs to call prepared_query.deinit()
pub fn prepareStatement(self: *Connection, q: [:0]const u8)
!PreparedStatement {
var stmt: c.duckdb_prepared_statement = undefined;
const state = c.duckdb_prepare(self._conn, q, &stmt);
if ( state == c.DuckDBError ){
return error.DuckDBError;
}
return PreparedStatement.init(stmt);
}
};
pub const Database = @This();
_db: c.duckdb_database,
pub fn init(file: [*c]const u8) !Database{
var db : Database = undefined;
if (c.duckdb_open(file, &db._db) == c.DuckDBError) {
return error.DuckDBError;
}
return db;
}
pub fn deinit(self: *Database) void{
c.duckdb_close(&self._db);
}
pub fn connect(self: Database) !Connection {
return Connection.init(self);
}
test "Open and connect" {
var database = try Database.init(":memory:");
defer database.deinit();
var connection = try database.connect();
defer connection.deinit();
}
test "Simple querying" {
var database = try Database.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 "Checks if all fields are captured" {
var database = try Database.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 Database.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 Database.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);
}
|