How to update an image in SQLite

Given a FolderItem with the path to an image file; what would be the syntax or code to update an existing record with the new image?
This is for the Desktop app for windows and OSx - SQLIte3

What have you tried already that didn’t work?

Actually, got it figured out.

Using RecordSet, first set the current record to “edit” mode. Then simply
set the BLOB field value to any “Picture” which would have been created from the FolderItem. e.g.

rs.Edit
rs.Field(“ImageFile”).PictureValue=pic //where pic is defined as a Picture
rs.Update

Took a bit to figure out that it was rather simple to accomplish.