1 2 3 4 5 |
L = length of data, # = overhead BLOB = L + 2 bytes (max size is 2^16 - 1 or 65,535 bytes, 65KB) MEDIUMBLOB = L + 3 bytes (max size is 2^24 - 1 or 16,777,215 bytes, 16MB) LONGBLOB = L + 4 bytes (max size is 2^32 - 1 or 4,294,967,295 bytes, 4GB) |