Compare commits

..

No commits in common. "dev" and "format" have entirely different histories.
dev ... format

2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ public:
* Make a request to the database
*/
map<string, vector<string>> query(const string& sql_command, const vector<string>& values = {});
map<string, vector<string>> query(const string& sql_command, const vector<string>& values);
/**
* Close the database and destroy the object

View File

@ -9,7 +9,7 @@ int main() {
SQLite3 mydb("../example/example.db", false);
auto res = mydb.query("Select * from Tab1");
auto res = mydb.query("Select * from Tab1 Where id > ?", {"3"});
// cout << endl << res["NAME"][1];
// cout << endl << res["MAIL"][1];