How do I set a Blob field in an SQLite3 database's table to an image value (of a photo's jpg file) held in an Image variable using an SQL update statement? Code would be something like: Dim img As Image 'Holds photo Dim sql As String sql = "Update t1 Set img = ????? Where ....." dbConnection.Exec(sql)