database - Difference between Blob and a file -
What is the difference between saving the file (eg AVI) in the datastore as a BLOB save it as a normal AVI file A webserver for?
Thank you!
Joel
A file saved on the server will be a normal file system file. But, in the database they have tables to save data. Therefore, when you want to save a file in a database, there is a special field that is a binary big object (bluebine)
field. Which bits allow to be stored in a database similar to any other field. What kind of file is this and does not store any other attributes of the file system? When reading back from the database, you should know the type of file that is usually stored in some other text field in the same table .
Comments
Post a Comment