| 411 | _db(db) {} |
| 412 | |
| 413 | database_binder operator<<(const std::string& sql) { |
| 414 | return database_binder(_db, sql); |
| 415 | } |
| 416 | |
| 417 | database_binder operator<<(const char* sql) { |
| 418 | return *this << std::string(sql); |
nothing calls this directly
no test coverage detected