Re: [jrf-user] Nullable blobs
Brought to you by:
joncrlsn
|
From: Cinq - G. P. de O. <g.p...@ci...> - 2002-11-22 10:44:18
|
Yes.
I tested some cases, I began with a empty table:
-insert a row: null blob field. (using domain.save)
-insert a row: blob field containing a gif file. (using domain.save)
-use domain.findWhere("BLOB_FIELD IS NULL") to get only the row containing
the null blob.
-use domain.findWhere("BLOB_FIELD IS NOT NULL") to get only the row
containing the blob with a gif file (I saved it to a file).
Update the row(domain.find followed by a domain.save) changing the null blob
to the blob containing a gif file.
I also updated the row containing the non-null blob to a null blob.
All of my tests worked.
Glaucio
----- Original Message -----
From: "Jay" <je...@vm...>
To: "JRF user list" <jrf...@li...>
Sent: Wednesday, November 20, 2002 6:46 PM
Subject: [jrf-user] Nullable blobs
>
> Your fix looks correct to me. I will check in your fix before the end
> of the week. Have you tested saving blobs (e.g. when value is not
> null)?
>
> James Evans
>
>
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:
> Battle your brains against the best in the Thawte Crypto
> Challenge. Be the first to crack the code - register now:
> http://www.gothawte.com/rd521.html
> _______________________________________________
> jrf-user mailing list
> jrf...@li...
> https://lists.sourceforge.net/lists/listinfo/jrf-user
|