How can I store an image in a MySQL database using VB.NET? Could you show some examples that use the INSERT
command?
views:
618answers:
4
A:
I believe the best way to store something like an image in a database is with a BLOB field (Binary Large Object), which is basically just a chunk of data.
Hope this is some help.
Lee D
2009-03-27 09:21:40
Please Give that code.I try error came.
somu
2009-03-27 10:29:44
+1
A:
Depending on the size of the Image data that you are saving, you'll want to use one of the flavors of the BLOB:
I think the max sizes on them are:
BLOB - 64KB max
MEDIUM BLOB - 16 MB max
LARGE BLOB - 4 GB max
itsmatt
2009-03-27 10:17:41
A:
You can try AccessImagine (http://access.bukrek.net), all you need to do is to bind it to some BLOB field in Properties Inspector.