Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix help description of the 'Cache Size' connection string property. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5e16011b0c3f0bc3fb61ad03ea14fea3 |
User & Date: | mistachkin 2015-08-14 03:44:32.354 |
Context
2015-08-15
| ||
06:38 | Update Eagle in externals to the pre-beta 34 release code. check-in: ecd546a7a7 user: mistachkin tags: trunk | |
2015-08-14
| ||
03:44 | Fix help description of the 'Cache Size' connection string property. check-in: 5e16011b0c user: mistachkin tags: trunk | |
2015-08-12
| ||
22:36 | Test suite fixes to get it working with Mono 4.0. check-in: d282128d61 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
294 295 296 297 298 299 300 | /// <b>False</b> - Store GUID columns as text /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// <item> /// <description>Cache Size</description> | | > > > > > > > | 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | /// <b>False</b> - Store GUID columns as text /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// <item> /// <description>Cache Size</description> /// <description> /// If the argument N is positive then the suggested cache size is set to N. /// If the argument N is negative, then the number of cache pages is adjusted /// to use approximately abs(N*1024) bytes of memory. Backwards compatibility /// note: The behavior of cache_size with a negative N was different in SQLite /// versions prior to 3.7.10. In version 3.7.9 and earlier, the number of /// pages in the cache was set to the absolute value of N. /// </description> /// <description>N</description> /// <description>2000</description> /// </item> /// <item> /// <description>Synchronous</description> /// <description> /// <b>Normal</b> - Normal file flushing behavior |
︙ | ︙ |