Index: System.Data.SQLite/SQLiteConvert.cs ================================================================== --- System.Data.SQLite/SQLiteConvert.cs +++ System.Data.SQLite/SQLiteConvert.cs @@ -110,19 +110,24 @@ public abstract class SQLiteConvert { /// /// An array of ISO8601 datetime formats we support conversion from /// - private static string[] _datetimeFormats = new string[] {"yyyy-MM-dd HH:mm:ss", - "yyyyMMddHHmmss", - "yyyyMMddTHHmmssfffffff", - "yyyy-MM-dd", - "yy-MM-dd", - "yyyyMMdd", - "HH:mm:ss", - "THHmmss" - }; + private static string[] _datetimeFormats = new string[] { + "yyyy-MM-dd HH:mm:ss", + "yyyy-MM-dd HH:mm", + "yyyyMMddHHmmss", + "yyyyMMddHHmm", + "yyyyMMddTHHmmssfffffff", + "yyyy-MM-dd", + "yy-MM-dd", + "yyyyMMdd", + "HH:mm:ss", + "HH:mm", + "THHmmss", + "THHmm" + }; /// /// An UTF-8 Encoding instance, so we can convert strings to and from UTF-8 /// private Encoding _utf8 = new UTF8Encoding();