Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Seems to be that when you had the version working, there were no NULL values in the database for your testing data, but when you merged the two databases, several of the images were missing and were replaced by NULLs. BTW, by default, a StrataFrame business object will insert an empty array for a byte[] field, so any new rows generated through the business objects would not have thrown the error. However, when you set the AllowNullValuesOnNewRow property to true, the NULL value is not replaced, so you could then end up with NULL values in that field.
|