简体   繁体   中英

How to Store Image in SQLite Database in React Native

I have taken an image with Image Picker and want to store it in sqlite database and retrive it. Should I store uri which I got in reponse from Image Picker or what should I do,

Thanks!

My honest opinion is to use a dedicated storage space for your images, and store the url and the image meta data in your database.

You can store your image as a base64, however this will take up a lot of space in your database, and the conversion to base64 and back to binary may even make the image size bigger.

Stick to a storage solution for your image (Both Google and AWS offers them), and save the url in your database.

Regards
Stephan Bakkelund Valois

you have to save image in local storage and save uri of that in SQLite . that's way is the better performance.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM