Hi,
We recently started supporting SQL Server 2016 and SQL Native Client 11.0 in our application, but we are running into some issues with DateTime and Time fields.
In the DB we have several Datetime columns, but since we added the compliance with SQL 2016 when we modify a datetime field it doesn't get updated. We verified the DB after upgrading to SQL 2016 and the fields remained the same (datetime columns remain as datetime and were not changed to datetime2 as someone pointed as a possible reason). If we change the compatibility flag on our database to SQL 2014 then the data is updated correctly.
Any one knows the reason of this behavior and how to solve it?
Thanks,
Wouldn't it be you might be missing a COMMIT; after the updates? Because if you don't get an error message on the update ....