Is it possible to save the image as blob in Rds after configuring the Amazon app?

Asked 2 years ago, Updated 2 years ago, 37 views

Currently, the server is configured by installing an app on Amazon Hosting. DB made a table with pictures, store names, addresses, and phone numbers. The name, address, and phone number are saved in DB, but the problem is not saved in the blob-type image. Can't Amazon store the image directly in DB? I tried googling, but I couldn't find a way, so I'm leaving a message~

aws

2022-09-22 13:10

1 Answers

There is a way to convert to base64 and save it as a string, but the reading speed is slow.

Therefore, after storing the image in the cloud, DB only stores url stored in the cloud.

I saved the image in s3 of aws and let the DB have the corresponding url.


2022-09-22 13:10

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.