A while ago I implemented native prepared statements into the MDB2 mysqli driver. However I was never able to get LOB support to work in the execute method. I almost forget about this and only stumbled over this issue again while testing a new portability fetch mode that fixes the issue of sqlite returning table qualifiers in associative fetches unlike most other DBMS extensions in PHP. Maybe someone has experience here and/or is motivated to fix the problem.
FYI: I also added the ability to specify if the array keys in associative fetches should be lowercased (default) or uppercased via the "field_case" option (set it to CASE_LOWER or CASE_UPPER). Previously only lowercasing was supported. Technically I should probably even make uppercased the default, …
[Read more]