I'm trying to send a file from an android application. I want this file to be stored in a mysql database on a server.
From my research online, I've only found how to send the file to the server, that's all.
Any help is welcome
Thanks
I'm trying to send a file from an android application. I want this file to be stored in a mysql database on a server.
From my research online, I've only found how to send the file to the server, that's all.
Any help is welcome
Thanks
Look into the BLOB type.
It is used to store binary data, in mysql.
But the recommended way is to upload the file to your server file system, then insert the path of your your file, not the file itself.