I have been doing some reading of my own and everything I have read sugests that storing images directly is not recomended. To store them you have to set the field to blob, which only supports text so you then have to convert your image back and forth between a text format to prevent corruption. It is instead recommended that in the table you store a link to where the image is on your harddrive or server or whatever. I know this is not exatcly what you asked but, if you do it this way you will be storing simple strings into your tables, so the max table size won't be as important. I hope you find this helpful.