I have an app that stores an image in a SQLite BLOB and happily retrieves and displays it in a form. However I need to push that up to a PHP Webserver and store it in the corresponding MySQL BLOB field.
Do I have to retrieve the BLOB, store it locally as a file then Post it to the Server for storage and subsequent conversion to a format for insert as a BLOB?
Or can I simply take the blob data and send it to the server without all the file conversion, etc
Do I have to retrieve the BLOB, store it locally as a file then Post it to the Server for storage and subsequent conversion to a format for insert as a BLOB?
Or can I simply take the blob data and send it to the server without all the file conversion, etc