When we write trough odbc SQL Native Client driver and empty string, the
odbc write a NULL value.
I search in internet for this problem and see than this is because odbc can
not differentiate the NULL value from an emty string.
They are any option to change this behavior of odbc native client driver?
We try to connect usig a system DSN and so a connection string, but the
problem is always.
The connection string we use is:
"DRIVER={SQL Native Client}; SERVER=servidor; Trusted_Connection=YES;
DATABASE=prueba;MARS_Connection=yes;"
Thank you
How are you writing your query? Try the following:
UPDATE YourTable
SET ColumnName = ''
WHERE ...