Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Documentation changes only |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
5852cf04755585c800f6b395fe311c77 |
User & Date: | rmsimpson 2006-02-02 23:09:59.000 |
Context
2006-02-07
| ||
20:06 | Design-time support fixes check-in: 8b9640024b user: rmsimpson tags: sourceforge | |
2006-02-02
| ||
23:09 | Documentation changes only check-in: 5852cf0475 user: rmsimpson tags: sourceforge | |
22:45 | Post 3.3.3 code changes check-in: 67812ebd3a user: rmsimpson tags: sourceforge | |
Changes
Changes to System.Data.SQLite/SQLiteConvert.cs.
︙ | ︙ | |||
67 68 69 70 71 72 73 | public enum SQLiteDateFormats { /// <summary> /// Using ticks is more accurate but less compatible with other viewers and utilities that access your database. /// </summary> Ticks = 0, /// <summary> | | < | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | public enum SQLiteDateFormats { /// <summary> /// Using ticks is more accurate but less compatible with other viewers and utilities that access your database. /// </summary> Ticks = 0, /// <summary> /// The default format for this provider. /// </summary> ISO8601 = 1, } /// <summary> /// Struct used internally to determine the datatype of a column in a resultset /// </summary> |
︙ | ︙ |