What is it exactly a BLOB in a DBMS context

前端 未结 7 1961
清歌不尽
清歌不尽 2020-11-30 19:23
  • What is it a BLOB?
  • How can I use it?
  • What are the differences between DBMS\'s BLOBs. I would like to save data using BLOBs into any DBMS and then rea
7条回答
  •  無奈伤痛
    2020-11-30 20:11

    A BLOB is a Binary Large OBject. It is used to store large quantities of binary data in a database.

    You can use it to store any kind of binary data that you want, includes images, video, or any other kind of binary data that you wish to store.

    Different DBMSes treat BLOBs in different ways; you should read the documentation of the databases you are interested in to see how (and if) they handle BLOBs.

提交回复
热议问题