Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add connection string property documentation for PrepareRetries. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b90035f692328c92fc0a285afb68e1f8 |
User & Date: | mistachkin 2015-02-28 05:14:32.189 |
Context
2015-02-28
| ||
07:32 | Final updates for release 1.0.95.0. check-in: 42c8a4f285 user: mistachkin tags: trunk, release, release-1.0.95.0 | |
05:14 | Add connection string property documentation for PrepareRetries. check-in: b90035f692 user: mistachkin tags: trunk | |
2015-02-26
| ||
20:34 | Update SQLite core library to the 3.8.8.3 release. check-in: 5f6b2d34a1 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
318 319 320 321 322 323 324 325 326 327 328 329 330 331 | /// <description> /// <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/> /// <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// </list> /// </remarks> public sealed partial class SQLiteConnection : DbConnection, ICloneable, IDisposable { #region Private Constants /// <summary> /// The "invalid value" for the <see cref="DbType" /> enumeration used | > > > > > > > > > > | 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | /// <description> /// <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/> /// <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// <item> /// <description>PrepareRetries</description> /// <description> /// The maximum number of retries when preparing SQL to be executed. This /// normally only applies to preparation errors resulting from the database /// schema being changed. /// </description> /// <description>N</description> /// <description>3</description> /// </item> /// </list> /// </remarks> public sealed partial class SQLiteConnection : DbConnection, ICloneable, IDisposable { #region Private Constants /// <summary> /// The "invalid value" for the <see cref="DbType" /> enumeration used |
︙ | ︙ | |||
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 | /// <description> /// <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/> /// <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// </list> /// </remarks> #if !PLATFORM_COMPACTFRAMEWORK [RefreshProperties(RefreshProperties.All), DefaultValue("")] [Editor("SQLite.Designer.SQLiteConnectionStringEditor, SQLite.Designer, Version=" + SQLite3.DesignerVersion + ", Culture=neutral, PublicKeyToken=db937bc2d44ff139", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] #endif public override string ConnectionString | > > > > > > > > > > | 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 | /// <description> /// <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/> /// <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// <item> /// <description>PrepareRetries</description> /// <description> /// The maximum number of retries when preparing SQL to be executed. This /// normally only applies to preparation errors resulting from the database /// schema being changed. /// </description> /// <description>N</description> /// <description>3</description> /// </item> /// </list> /// </remarks> #if !PLATFORM_COMPACTFRAMEWORK [RefreshProperties(RefreshProperties.All), DefaultValue("")] [Editor("SQLite.Designer.SQLiteConnectionStringEditor, SQLite.Designer, Version=" + SQLite3.DesignerVersion + ", Culture=neutral, PublicKeyToken=db937bc2d44ff139", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] #endif public override string ConnectionString |
︙ | ︙ |