i'm developing an android application when the user can send a image to my webservice.
Currently on my WebService i get a Base64 string and save it in a table on my database.
My question: Is that a good practice? Because as far as i know the Base64 string is a heavy string. My concern is about the db performance, like when this table gets bigger than 10000...100000 records.
Or should i avoid this behavior?
Eg.: Isntead off store the Base64 string on the database, i could recover the image and save only the URL at my db.
Ps: The database is SqlServer
Thanks for the help guys