citizenkahn wrote: > Anyone know how? Thanks... Digging around in col.py, apparently it determines which type to use based on the length parameter to BlobCol.
length >= 2**24: LONGBLOB length >= 2**16: MEDIUMBLOB length >= 2**8: BLOB else: TINYBLOB
citizenkahn wrote: > Anyone know how? Thanks... Digging around in col.py, apparently it determines which type to use based on the length parameter to BlobCol.
length >= 2**24: LONGBLOB length >= 2**16: MEDIUMBLOB length >= 2**8: BLOB else: TINYBLOB