kaptenhonek

Results 6 comments of kaptenhonek

Do you really need to use quotation marks when you're using a prepared statement? Have you tried the following: ``` SQLite::Statement query(db, R"(ATTACH DATABASE ?)"); query.bind(1, "path/to/database.db"); query.exec(); ``` That...

Hm, it seems I found some issues, don't pull this yet

Ok this should be ready now. Due to me adding bind with const char* and length functions to bind text I had to change all binary blobs to unsigned char*...