Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add and improve comments. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
15da7aee5451a90f35ef1fbcb60520c7 |
User & Date: | mistachkin 2015-10-07 17:31:01.673 |
Context
2015-10-08
| ||
20:49 | Update SQLite core library to the latest trunk code. check-in: 2e96bf596d user: mistachkin tags: trunk | |
2015-10-07
| ||
17:31 | Add and improve comments. check-in: 15da7aee54 user: mistachkin tags: trunk | |
2015-10-06
| ||
01:47 | Update SQLite core library to the latest trunk code. check-in: 619cef05bd user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteModule.cs.
︙ | ︙ | |||
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 | /////////////////////////////////////////////////////////////////////// private long? estimatedRows; /// <summary> /// Estimated number of rows returned. Using a null value here /// indicates that a default estimated rows value should be used. /// </summary> public long? EstimatedRows { get { return estimatedRows; } set { estimatedRows = value; } } /////////////////////////////////////////////////////////////////////// private SQLiteIndexFlags? idxFlags; /// <summary> | > > | > > > | 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 | /////////////////////////////////////////////////////////////////////// private long? estimatedRows; /// <summary> /// Estimated number of rows returned. Using a null value here /// indicates that a default estimated rows value should be used. /// This property has no effect if the SQLite core library is not at /// least version 3.8.2. /// </summary> public long? EstimatedRows { get { return estimatedRows; } set { estimatedRows = value; } } /////////////////////////////////////////////////////////////////////// private SQLiteIndexFlags? idxFlags; /// <summary> /// The flags that should be used with this index. Using a null value /// here indicates that a default flags value should be used. This /// property has no effect if the SQLite core library is not at least /// version 3.8.12. /// </summary> public SQLiteIndexFlags? IdxFlags { get { return idxFlags; } set { idxFlags = value; } } #endregion |
︙ | ︙ |