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 | 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> |
︙ | |||
350 351 352 353 354 355 356 357 358 359 360 361 362 363 | 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> |
︙ |