I have looked all over the docs and searched google, but can't seem to find much info about inserting blob/binary data (in my case PNG images) into a database (in my case an SQLite database via PDO).
With PDO you can pass PDO::PARAM_LOB as the third parameter to bindParam(). With Sqlite3 you can pass SQLITE3_BLOB as the third parameter to bindParam(). When composing an query with the Insert Query Builder, how do I get FuelPHP to treat the certain data as a blob as opposed to a string.