Hi,
As subject, i use QSqlQuery to access tableA which contains column storing blob data as follows,
Qt Code:
  1. QSqlQuery query("SELECT * FROM tableA");
  2. while (query.next()) {
  3. i++;
  4. }
To copy to clipboard, switch view to plain text mode 
The speed of query is too slow which need about 5s to execute whole "while" loop, is there any idea to improved it? How to deal with blob?
Thanks!