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
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: