You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you share an example for updating BLOB type. I could not find one.
Here is what I am doing :
// ImageData data type is Data
let statement = try db.prepare("Update SpecialityModule SET ImageData = ? where ServerId = ?")
try statement.run(module.ImageData as! Binding?, module.ServerId)
Error received on statement.run :
Could not cast value of type 'Foundation.Data' (0xd0fad8) to 'SQLite.Binding' (0x2bd6058).
The text was updated successfully, but these errors were encountered:
Could you share an example for updating BLOB type. I could not find one.
Here is what I am doing :
// ImageData data type is Data
let statement = try db.prepare("Update SpecialityModule SET ImageData = ? where ServerId = ?")
try statement.run(module.ImageData as! Binding?, module.ServerId)
Error received on statement.run :
Could not cast value of type 'Foundation.Data' (0xd0fad8) to 'SQLite.Binding' (0x2bd6058).
The text was updated successfully, but these errors were encountered: