How to Store Resume in our Database | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to Store Resume in our Database

I need a Guidance how can i store pdf in my database. I have been working on React js and at backend i'm using (.Net Core) and my Database is SqlServer. As i know i can only store the pdf link in my Database but my problem where i will store the pdf to get a link i have to store somewhere. If anyone has done that please guide me in this process. I don't want to use 3rd party software like firebase or something. if anyone know please share your thoughts on this thank you.

3rd Jan 2024, 9:49 AM
Akash Gupta
Akash Gupta - avatar
2 Answers
+ 2
Create a table in your SQL Server database to store the PDFs. Include a column for the PDF file data (e.g., Content of type VARBINARY(MAX)), and other necessary metadata. Then implement an API endpoint in your .NET Core backend to receive PDF uploads. Use a POST request to send the PDF data to the server.
3rd Jan 2024, 10:06 AM
卂ㄚㄩ丂卄
卂ㄚㄩ丂卄 - avatar
0
Okay I will try this.卂ㄚㄩ丂卄
4th Jan 2024, 7:40 AM
Akash Gupta
Akash Gupta - avatar