Re: [sqlite] SQLiteBlob.Create failing "No RowId is available"

2017-06-09 Thread Joe Mistachkin
Another note: The GUID column will need to be marked as UNIQUE or PRIMARY KEY in the CREATE TABLE statement in order for the BLOB lookup to work properly. -- Joe Mistachkin @ https://urn.to/r/mistachkin ___ sqlite-users mailing list

Re: [sqlite] SQLiteBlob.Create failing "No RowId is available"

2017-06-09 Thread Joe Mistachkin
Sergio Capozzi wrote: > > It seems the KeyInfo calculation is doing something wrong. > Is there a workaround or is a known bug? > Version 1.0.105.1 > Thanks for the report. This should now be fixed on trunk. -- Joe Mistachkin @ https://urn.to/r/mistachkin

Re: [sqlite] SQLiteBlob.Create failing "No RowId is available"

2017-06-09 Thread Richard Hipp
On 6/9/17, Sergio Capozzi wrote: > Hi all, > > > I'm not able to create a Blob from thaat table schema > > > CREATE TABLE "DataBlobs" ( `DataBlobGUID` GUID NOT NULL, `Data` BLOB NOT > NULL, FOREIGN KEY(`DataBlobGUID`) REFERENCES `DataStream`(`DataStreamGUID`) > ) > > >

[sqlite] SQLiteBlob.Create failing "No RowId is available"

2017-06-09 Thread Sergio Capozzi
Hi all, I'm not able to create a Blob from thaat table schema CREATE TABLE "DataBlobs" ( `DataBlobGUID` GUID NOT NULL, `Data` BLOB NOT NULL, FOREIGN KEY(`DataBlobGUID`) REFERENCES `DataStream`(`DataStreamGUID`) ) This is my query: ("SELECT rowid, Data FROM DataBlobs WHERE DataBlobGuid =