Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix an incorrect doc comment on the Schema_Columns method. Pursuant to [ff163eb3d8]. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7632e932f50e36d808b09bc992177c6b |
User & Date: | mistachkin 2017-10-19 17:26:17.051 |
Context
2017-10-25
| ||
17:07 | Temporarily re-enable the legacy CryptoAPI codec. check-in: 9486553a2c user: mistachkin tags: trunk | |
2017-10-19
| ||
17:26 | Fix an incorrect doc comment on the Schema_Columns method. Pursuant to [ff163eb3d8]. check-in: 7632e932f5 user: mistachkin tags: trunk | |
2017-10-18
| ||
17:59 | Add GetInvariantDecimal connection flag, enabled by default, to force returning of decimal values using the invariant culture. Update version history docs. check-in: b37afb1ddc user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
5428 5429 5430 5431 5432 5433 5434 | return tbl; } /// <summary> /// Build a Columns schema /// </summary> /// <param name="strCatalog">The catalog (attached database) to query, can be null</param> | | | 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 | return tbl; } /// <summary> /// Build a Columns schema /// </summary> /// <param name="strCatalog">The catalog (attached database) to query, can be null</param> /// <param name="strTable">The table to retrieve schema information for, can be null</param> /// <param name="strColumn">The column to retrieve schema information for, can be null</param> /// <returns>DataTable</returns> private DataTable Schema_Columns(string strCatalog, string strTable, string strColumn) { DataTable tbl = new DataTable("Columns"); DataRow row; |
︙ | ︙ |