-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpre_count.cpp
More file actions
39 lines (30 loc) · 844 Bytes
/
pre_count.cpp
File metadata and controls
39 lines (30 loc) · 844 Bytes
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
#include <iostream>
#include <string>
using namespace std;
#include "libsqlite.hpp"
int main()
{
string sqliteFile = "pokedex.sqlite";
try
{
sqlite::sqlite db( sqliteFile );
auto cur = db.get_statement();
cout << "Which generation do you want to ask about? ";
int gen;
cin >> gen;
cur->set_sql( "select count(*) "
"from pokemon_species "
"where generation_id = ?" );
cur->prepare();
cur->bind( 1, gen );
cur->step();
int count = cur->get_int(0);
cout << "There are " << count << " generation " << gen << " pokemon." << endl;
}
catch( sqlite::exception e ) // catch all sql issues
{
std::cerr << e.what() << std::endl;
return 1;
}
return 0;
}