If I use the following string as a connection string to my (local) SQL Server database:
"Driver={SQL Server Native Client 10.0};DSN='';Server=RFLD-PUNDRWOOD\TESTINSTANCE;Database=NRSUP;Trusted_Connection=yes;Regional=no"
and then attempt to insert 9879 bytes of data into a field of type varbinary(max), I get the right truncation message.
If, however, I use this string as the connection string:
"DSN=NRSUP;Description=Test;APP=DbTest Application;WSID=RFLD-PUNDRWOOD;Trusted_Connection=Yes"
the data saves fine. Any ideas what might be wrong here?