开发者

storing forum posts in mysql

开发者 https://www.devze.com 2022-12-14 13:15 出处:网络
ph开发者_Go百科pBB stores forum post texts in a strange way (like: [BLOB - 115 B]), what is it? How it is done?BLOB (Binary Large Object) is a large collection of binary data stored in a database tabl

ph开发者_Go百科pBB stores forum post texts in a strange way (like: [BLOB - 115 B]), what is it? How it is done?


BLOB (Binary Large Object) is a large collection of binary data stored in a database table. Different database servers handles BLOB differently. But there are some common characteristics like:

  • BLOB stores binary data, which
    requires no encoding schema. BLOB
    data is stored in units of bytes.

  • BLOB data is usually large. Many
    database servers offer very high
    maximum sizes like 4 GB.

  • BLOB data is usually not directly stored inside the table. It is stored in different storage areas and its reference address is stored inside the table.
0

精彩评论

暂无评论...
验证码 换一张
取 消