Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix ambiguous method overload selection issue in the 'getDateTimeTicks' test suite helper procedure. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8db28182d3bd836da065aa137c6c32ac |
User & Date: | mistachkin 2016-10-13 20:57:10.043 |
Context
2016-10-13
| ||
22:55 | Vastly simplify the existing test for ticket [aba4549801]. check-in: 433ac1911c user: mistachkin tags: trunk | |
20:57 | Fix ambiguous method overload selection issue in the 'getDateTimeTicks' test suite helper procedure. check-in: 8db28182d3 user: mistachkin tags: trunk | |
18:54 | Fix typo in the VCX project files that was preventing the interop DLL from being copied during post-build in the 'ReleaseNativeOnly' configuration on x64. check-in: 1077726517 user: mistachkin tags: trunk | |
Changes
Changes to lib/System.Data.SQLite/common.eagle.
︙ | ︙ | |||
1864 1865 1866 1867 1868 1869 1870 | proc getDateTimeTicks { value {local ""} {default ""} } { if {[string length $value] == 0} then { return $default } if {[catch { | | > > | 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 | proc getDateTimeTicks { value {local ""} {default ""} } { if {[string length $value] == 0} then { return $default } if {[catch { set dateTime [object invoke -create \ -parametertypes [list String String IFormatProvider \ System.Globalization.DateTimeStyles] DateTime ParseExact \ $value [getDateTimeFormat] null AdjustToUniversal] }]} then { return $default } if {[string is boolean -strict $local]} then { set dateTime [object invoke -create DateTime SpecifyKind \ |
︙ | ︙ |