-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
I created a table using following query -
CREATE TABLE blobs (id INTEGER PRIMARY KEY AUTOINCREMENT, blobKey TEXT, image BLOB, fileName TEXT );
Gets following error while inserting a Blob Object -
Error processing SQL: a statement error callback did not return false: Unsupported argument type: blob
in SQLite3.js, the bind function had only three cases - number, string and null.
Is there any solution for saving blob objects?