Hello all,
In the picture i send it is possible to manage a table containing 3 flields:

Qt Code:
  1. mysql> describe foto;
  2. +-------+-------------+------+-----+---------+-------+
  3. | Field | Type | Null | Key | Default | Extra |
  4. +-------+-------------+------+-----+---------+-------+
  5. | id | int(11) | NO | PRI | NULL | |
  6. | name | varchar(45) | NO | | NULL | |
  7. | image | blob | YES | | NULL | |
  8. +-------+-------------+------+-----+---------+-------+
  9. 3 rows in set (0.00 sec)
To copy to clipboard, switch view to plain text mode 

sample.png
The load button allows me to load an image form disk into a QLabel.
Now, if i press the add button a key is generated for the id, the name comes from the opened filname and ... the question is:

How can i manage the data for the hidden column (image) if i want to insert the loaded image into that BLOB?

Thanks for any tips on this subject