How the video is stored in database table does database have that much size? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How the video is stored in database table does database have that much size?

3rd May 2016, 4:52 PM
Raju Gautam
Raju Gautam - avatar
2 Answers
+ 1
The database can store video files directly as BLOB (Binary large objects), but it is better to store the links to the videos, like paths.
20th Jun 2016, 12:45 PM
James Flanders
0
Files are stored in database as varbinary or BLOB objects. If bigger files are uploaded to database, size will increase and it will effect the performance of the dB. Instead of that you can keep the files in a file system or in cloud and keep the path reference in dB.
22nd Jun 2016, 5:45 PM
Tijo Joseph
Tijo Joseph - avatar