On Jun 04, 2006, at 4:20 PM, Dr Gerard Hammond wrote:
At 8:57 AM +0200 28/5/06, Marco Bambini wrote:This is a very simple example: // create a dummy table db.SQLExecute("CREATE TABLE images(picture BLOB)") // insert an image into the BLOB column Dim rec As New DatabaseRecord rec.BlobColumn("picture") = GetMyPicture db.InsertRecord ("images", rec) db.CommitHow would I do this via SQL? db.sqlexecute("INSERT into images (picture) values (???????)")
Just have to make sure the data is properly escaped and quoted _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
