In our app the same update is executed in a SQL Server and a SQLite database.
The issue is that SQL Server works as expected however SQLite somehow is getting always 1/1/0001.
This is the update command:
UPDATE ReviewSow
SET
SowingDate = '7/1/2016 12:00:00 AM -03:00'
WHERE
ReviewSowId = 3366;
Any idea why this could be happening?