```cpp std::string sql = "SELECT name FROM sqlite_master WHERE type='table';"; SQLite::Statement query{ db, sql.c_str() }; // OK! SQLite::Statement query{ db, sql }; // Error! ``` Extremely misleading, I've wasted a lot of time here, and it's hard for me.