Need to insert miltiple blobs into the database workbench using
Firebird 2.
How do i do it?
I've tried...
INSERT INTO theTable
(id, blob_col)
VALUES
(42,{$blobfile=c:/data/image.bmp});
But firebird doesn't recognize the "=" to sign.
How must i go about doin it?