kaptenhonek
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, it should be working now
Sure, I'll fix it soon
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*...
Yeah, that seems like a wise idea