sai
1
I have an application where the user will make a selection from a combo box that is bound to a table in a MYSQL (remote) database.
I need to be able to load an associate BLOB (jpg) from the database and show it on the screen.
Is there a way to do this ? 
Yes, you should be able to put this together. There are a few different routes you could go, I’d do something like this:
- Retrieve the BLOB with a query
- Get a temp file with fpmi.file.getTempFile(“jpg”)
- Write the data to the temp file with fpmi.file.writeFile
- Set an image component’s “path” property to the URL of the temp file (“file://”+tempFilePath")