I have some images in an informix database, as a binary blob field (jpg), how can i write the images onto disk with an SQL?
feedback
|
|
Is the data stored in a BYTE or a BLOB field? If the data is stored in a BLOB column, then you can use:
If the data is stored in a BYTE column, then you have to work rather harder. If you have ESQL/C (ClientSDK) and a C compiler on your machine, then I recommend obtaining SQLCMD from the IIUG Software Archive and extracting the software. You need your Informix environment set, and you need to be able to compile C programs. Then run:
It doesn't much matter what you specify as the prefix - you just need to run the configure script. You can then either compile everything ( If your database is called
This will unload the byte value into the named file. If you don't have ESQL/C or a C compiler or permission to use them, then life is more difficult. The closest approach is to use the UNLOAD statement in DB-Access:
This will create a file containing a hex-dump of the byte value (2 bytes per character). You then need to post-process the file to convert the hex into regular data. Note that if the column was a TEXT column instead of a BYTE column, then no conversion would be needed. You can use a fairly simple Perl script to do the conversion (provided the file is small enough to be slurped into memory - you have to work harder if it is not small enough):
The length condition specifies ' (For 'hysterical raisins', aka 'historical reasons', I still call both BYTE and TEXT 'blob types', even though IDS 9.00 introduced the explicit names BLOB and CLOB for 'smart blobs', a slightly different pair of data types with roughly corresponding functionality - in my book, they're all blob (lower-case) types. That's the trouble with old guys who learned about BYTE and TEXT blobs in 1990, six years or more before BLOB and CLOB blobs were added. In any case, there isn't a good alternative official terminology for the older style blobs; using 'dumb blobs' is not politically correct!) | ||||
feedback
|
|
You need to write a small program that queries the database and saves the blobs to disk. Most databases have no notion of "open file on disk". | |||
|
feedback
|