Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor conversion fixes |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
7df5ddfcd382280f3cbe72947feaafff |
User & Date: | rmsimpson 2005-11-03 20:41:04.000 |
Context
2005-11-03
| ||
20:41 | Fixed schema reporting for parameterized queries check-in: c1ec6eee86 user: rmsimpson tags: sourceforge | |
20:41 | Minor conversion fixes check-in: 7df5ddfcd3 user: rmsimpson tags: sourceforge | |
20:39 | DataSourceInformation schema fixes check-in: 391d528e55 user: rmsimpson tags: sourceforge | |
Changes
Changes to System.Data.SQLite/SQLiteConvert.cs.
︙ | ︙ | |||
51 52 53 54 55 56 57 | /// <summary> /// Used internally by this provider /// </summary> DateTime = 10, /// <summary> /// Used internally /// </summary> | | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | /// <summary> /// Used internally by this provider /// </summary> DateTime = 10, /// <summary> /// Used internally /// </summary> None = 11, } /// <summary> /// This implementation of SQLite for ADO.NET can process date/time fields in databases in only one of two formats. Ticks and ISO8601. /// Ticks is inherently more accurate, but less compatible with 3rd party tools that query the database, and renders the DateTime field /// unreadable without post-processing. /// ISO8601 is more compatible, readable, fully-processable, but less accurate as it doesn't provide time down to fractions of a second. |
︙ | ︙ | |||
350 351 352 353 354 355 356 357 358 359 360 361 362 363 | typeof(byte[]), typeof(DBNull), null, null, null, null, typeof(DateTime), }; /// <summary> /// For a given intrinsic type, return a DbType /// </summary> /// <param name="typ">The native type to convert</param> /// <returns>The corresponding (closest match) DbType</returns> | > | 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | typeof(byte[]), typeof(DBNull), null, null, null, null, typeof(DateTime), null, }; /// <summary> /// For a given intrinsic type, return a DbType /// </summary> /// <param name="typ">The native type to convert</param> /// <returns>The corresponding (closest match) DbType</returns> |
︙ | ︙ |