Have a SQL file that is supposed to load configuration data into a database with the following type of statement
Insert Into SomeTable(ID,SomeNameField,SomeMediumBlobField) Values('0','SomeName', $FILE{/path/somefile.txt});
I gather the intent is to upload contents of somefile.txt into...