forked from lexicalunit/nanodbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.cpp
205 lines (163 loc) · 6.63 KB
/
example.cpp
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
#include "nanodbc.h"
#include <algorithm>
#include <iostream>
using namespace std;
void run_test(const char* connection_string);
void show(nanodbc::result& results);
int main(int argc, char* argv[])
{
try
{
run_test(argv[1]);
}
catch(const exception& e)
{
cerr << e.what() << endl;
}
}
void run_test(const char* connection_string)
{
// Establishing connections
nanodbc::connection connection(connection_string);
// or connection(connection_string, timeout_seconds);
// or connection("data source name", "username", "password");
// or connection("data source name", "username", "password", timeout_seconds);
cout << "Connected with driver " << connection.driver_name() << endl;
// Setup
execute(connection, "drop table if exists public.simple_test;");
execute(connection, "create table public.simple_test (a int, b varchar(10));");
nanodbc::result results;
// Direct execution
{
execute(connection, "insert into public.simple_test values (1, 'one');");
execute(connection, "insert into public.simple_test values (2, 'two');");
execute(connection, "insert into public.simple_test values (3, 'tri');");
execute(connection, "insert into public.simple_test (b) values ('z');");
results = execute(connection, "select * from public.simple_test;");
show(results);
}
// Accessing results by name, or column number
{
results = execute(connection, "select a as first, b as second from public.simple_test where a = 1;");
results.next();
cout << endl << results.get<int>("first") << ", " << results.get<string>(1) << endl;
}
// Binding parameters
{
nanodbc::statement statement(connection);
// Inserting values
prepare(statement, "insert into public.simple_test (a, b) values (?, ?);");
const int eight_int = 8;
statement.bind(0, &eight_int);
const string eight_str = "eight";
statement.bind(1, eight_str.c_str());
execute(statement);
// Inserting null values
prepare(statement, "insert into public.simple_test (a, b) values (?, ?);");
statement.bind_null(0);
statement.bind_null(1);
execute(statement);
// Inserting multiple null values
prepare(statement, "insert into public.simple_test (a, b) values (?, ?);");
statement.bind_null(0, 2);
statement.bind_null(1, 2);
execute(statement, 2);
prepare(statement, "select * from public.simple_test;");
results = execute(statement);
show(results);
}
// Transactions
{
{
cout << "\ndeleting all rows ... " << flush;
nanodbc::transaction transaction(connection);
execute(connection, "delete from public.simple_test;");
// transaction will be rolled back if we don't call transaction.commit()
}
results = execute(connection, "select count(1) from public.simple_test;");
results.next();
cout << "still have " << results.get<int>(0) << " rows!" << endl;
}
// Batch inserting
{
nanodbc::statement statement(connection);
execute(connection, "drop table if exists public.batch_test;");
execute(connection, "create table public.batch_test (x varchar(10), y int, z float);");
prepare(statement, "insert into public.batch_test (x, y, z) values (?, ?, ?);");
const std::size_t elements = 4;
char xdata[elements][10] = { "this", "is", "a", "test" };
statement.bind_strings(0, xdata);
int ydata[elements] = { 1, 2, 3, 4 };
statement.bind(1, ydata, elements);
float zdata[elements] = { 1.1, 2.2, 3.3, 4.4 };
statement.bind(2, zdata, elements);
transact(statement, elements);
results = execute(connection, "select * from public.batch_test;", 3);
show(results);
execute(connection, "drop table if exists public.batch_test;");
}
// Dates and Times
{
execute(connection, "drop table if exists public.date_test;");
execute(connection, "create table public.date_test (x datetime);");
execute(connection, "insert into public.date_test values (current_timestamp);");
results = execute(connection, "select * from public.date_test;");
results.next();
nanodbc::date date = results.get<nanodbc::date>(0);
cout << endl << date.year << "-" << date.month << "-" << date.day << endl;
results = execute(connection, "select * from public.date_test;");
show(results);
execute(connection, "drop table if exists public.date_test;");
}
// Inserting NULL values with a sentry
{
nanodbc::statement statement(connection);
prepare(statement, "insert into public.simple_test (a, b) values (?, ?);");
const int elements = 5;
const int a_null = 0;
const char* b_null = "";
int a_data[elements] = {0, 88, 0, 0, 0};
char b_data[elements][10] = {"", "non-null", "", "", ""};
statement.bind(0, a_data, elements, &a_null);
statement.bind_strings(1, b_data, b_null);
execute(statement, elements);
nanodbc::result results = execute(connection, "select * from public.simple_test;");
show(results);
}
// Inserting NULL values with flags
{
nanodbc::statement statement(connection);
prepare(statement, "insert into public.simple_test (a, b) values (?, ?);");
const int elements = 2;
int a_data[elements] = {0, 42};
char b_data[elements][10] = {"", "every"};
bool nulls[elements] = {true, false};
statement.bind(0, a_data, elements, nulls);
statement.bind_strings(1, b_data, nulls);
execute(statement, elements);
nanodbc::result results = execute(connection, "select * from public.simple_test;");
show(results);
}
// Cleanup
execute(connection, "drop table if exists public.simple_test;");
}
void show(nanodbc::result& results)
{
const short columns = results.columns();
long rows_displayed = 0;
cout << "\nDisplaying " << results.affected_rows() << " rows "
<< "(" << results.rowset_size() << " fetched at a time):" << endl;
// show the column names
cout << "row\t";
for(short i = 0; i < columns; ++i)
cout << results.column_name(i) << "\t";
cout << endl;
// show the column data for each row
while(results.next())
{
cout << rows_displayed++ << "\t";
for(short col = 0; col < columns; ++col)
cout << "(" << results.get<string>(col, "null") << ")\t";
cout << endl;
}
}