The example here does not works:
[code]Dim row As New DatabaseRecord
row.Column(“EmployeeID”) = “1”
row.Column(“FirstName”) = “Emile”
row.Column(“LastName”) = “Schwarz”
row.BlobColumn(“PhotoID”) = cImage.Backdrop
myDB.InsertRecord(“Team”, row)
If myDB.Error Then
MsgBox("DB Error: " + myDB.ErrorMessage)
End If[/code]
The flagged error is:
There is more than one item with this name and its not clear to which this refers.
the yellow background text is: row.BlobColumn("Logo"
The create string looks like what found here :
CREATE TABLE Team (EmployeeID INTEGER, FirstName TEXT, LastName TEXT, Photo BLOB, PRIMARY KEY (EmployeeID))