HansH
HansH
When using setReplyContent, this does not show up in the browser. For example, we can extend the facebookdemo by adding the following line to `FBDemo::FBDemo` `` o2Facebook_->setReplyContent("You have succesfully authenticated...
Since we're dealing wit templates, we can have pretty long typenames. For me this results in the following error when invoking `dot`: `syntax error in line 33728 scanning a quoted...
If I change or remove a trigger in the database schema, it is not updated. Example: ```c++ #include #include using namespace sqlite_orm; struct Lead { int id = 0; std::string...
See this example: ```c++ #include #include #include using namespace sqlite_orm; struct MyTableRecord { int id = 0; std::string name; }; int main() { { auto storage = make_storage("db.sqlite", make_table("MyTable", make_column("id",...