Hi,
i'm trying UNIDac component in my XE2 application with SQL Server Compact 3.5.
I've a problem with a table with a non mandatory image field.
When i try to update tha table it give me an error 'Field fielname must have a value.
I've made anything wrong?
Thanks, Luca
Image field in SQL Server Compact
Re: Image field in SQL Server Compact
hello,
To resolve the problem, you should set the RequiredFields property to True
To resolve the problem, you should set the RequiredFields property to True
Code: Select all
UniQuery1.Options.RequiredFields := true;Re: Image field in SQL Server Compact
Hi Alex,
the Options.RequiredFields property is already set to True.
I attach a image of the table definition:

When i update the table it give me an error 'Field fingerprint must have a value'
Thanks, Luca
the Options.RequiredFields property is already set to True.
I attach a image of the table definition:

When i update the table it give me an error 'Field fingerprint must have a value'
Thanks, Luca
Re: Image field in SQL Server Compact
hello,
Sorry for my misprints, you should set the RequiredFields property to FALSE
Sorry for my misprints, you should set the RequiredFields property to FALSE
Re: Image field in SQL Server Compact
Ah, ok
Thanks
Thanks