那试试MEDIUMBLOB或者LONGBLOB字段类型啊

解决方案 »

  1.   

    ya.. Look at the size limitations for the different 
    types in the mysql manual. You may want to use a 
    mediumblob since a blob is limited to 64K.http://www.mysql.com/doc/en/Storage_requirements.htmlCHAR(M) 
    M bytes, 1 <= M <= 255 
    VARCHAR(M) 
    L+1 bytes, where L <= M and 1 <= M <= 255 
    TINYBLOB, TINYTEXT 
    L+1 bytes, where L < 2^8 
    BLOB, TEXT 
    L+2 bytes, where L < 2^16 
    MEDIUMBLOB, MEDIUMTEXT 
    L+3 bytes, where L < 2^24 
    LONGBLOB, LONGTEXT 
    L+4 bytes, where L < 2^32
      

  2.   

    sandyde2(sandy)讲的真全,学习!