how to insert pdf file in java database and retrieve it using one unique id number. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

how to insert pdf file in java database and retrieve it using one unique id number.

how to insert a pdf file in java database using jsp/servlet and retrieve this file using one unique identification number

1st Dec 2018, 5:44 AM
Love Barot
Love Barot - avatar
2 Answers
+ 2
Storing a possibly big file in database is NOT a good idea. Database size will get bigger and bigger, and access time will get slower. I once a fix database because of this problem even the dbms crash if i'm not limiting the output. My advice is save the file somewhere in disk or cloud storage, then only save the path to that file in the database
1st Dec 2018, 6:18 AM
Taste
Taste - avatar