Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix comment for the BindAndGetAllAsText connection flag. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
1b99a129a8a3483a4f6036e754a31231 |
User & Date: | mistachkin 2014-01-04 00:50:40.926 |
Context
2014-01-04
| ||
01:03 | Put new connection flags in logical order. Add several new composite connection flags. Update comments. check-in: 133692ee96 user: mistachkin tags: trunk | |
00:50 | Fix comment for the BindAndGetAllAsText connection flag. check-in: 1b99a129a8 user: mistachkin tags: trunk | |
00:04 | Add BindInvariantText and ConvertInvariantText connection flags to force the invariant culture to be used when converting parameter values to/from strings. check-in: f2f08c2ab7 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteBase.cs.
︙ | ︙ | |||
992 993 994 995 996 997 998 | /// <summary> /// When binding parameter values, always use the invariant culture when /// converting them from strings. /// </summary> ConvertInvariantText = 0x20000, /// <summary> | | | | | 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 | /// <summary> /// When binding parameter values, always use the invariant culture when /// converting them from strings. /// </summary> ConvertInvariantText = 0x20000, /// <summary> /// When binding parameter values or returning column values, always /// treat them as though they were plain text (i.e. no numeric, /// date/time, or other conversions should be attempted). /// </summary> BindAndGetAllAsText = BindAllAsText | GetAllAsText, /// <summary> /// Enable all logging. /// </summary> LogAll = LogPrepare | LogPreBind | LogBind | |
︙ | ︙ |