Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
History for System.Data.SQLite/SQLiteConnectionStringBuilder.cs
2023-05-15
| ||
05:05 | Fix default value for StepRetries in the connection string builder. file: [c252e937e0] check-in: [38010dec09] user: mistachkin branch: trunk, size: 28920 | |
2023-05-12
| ||
22:28 | Add the 'StepRetries' connection string property. Also, revise how the 'PrepareRetries' connection string property works internally. file: [2e2a8b8ada] check-in: [98877b1863] user: mistachkin branch: trunk, size: 28919 | |
2023-04-01
| ||
04:23 | Add the 'TextHexPassword' connection string property. file: [f88a5d6027] check-in: [740d7652e8] user: mistachkin branch: trunk, size: 28303 | |
2022-08-06
| ||
02:22 | Add test for the new DefaultMaximumSleepTime connection string property. file: [212c82178a] check-in: [579b7edbe6] user: mistachkin branch: trunk, size: 27514 | |
2021-02-19
| ||
02:50 | Add 'TextPassword' connection string property for use with the SQLite Encryption Extension. file: [a1d20987dc] check-in: [d2ec91fd6e] user: mistachkin branch: trunk, size: 26985 | |
2018-01-30
| ||
21:16 | Add experimental WaitForEnlistmentReset connection flag and WaitTimeout connection string property. file: [6e1ae1d204] check-in: [19447f0a41] user: mistachkin branch: trunk, size: 26422 | |
2016-03-22
| ||
15:58 | Adapt to the new default page and cache sizes. file: [fef1667ea6] check-in: [b1aa416311] user: mistachkin branch: core312, size: 25692 | |
2015-07-25
| ||
18:20 | Add 'Recursive Triggers' connection string property to enable or disable the recursive trigger capability. Pursuant to [3a82ee635b]. file: [ab4cc034a6] check-in: [8a3839a32f] user: mistachkin branch: trunk, size: 25691 | |
2015-07-14
| ||
19:29 | Honor the pre-existing flags for connections during the Open method. Fix for [964063da16]. file: [d8379c2a2c] check-in: [f7cac79346] user: mistachkin branch: trunk, size: 25192 | |
2015-06-24
| ||
20:02 | Change the base type for the SQLiteConnectionFlags enumeration to long integer. Improve exception handling in all native callbacks implemented in the SQLiteConnection class. Add Progress event and ProgressOps connection string property to enable raising progress events during long-running queries. file: [89a49b0708] check-in: [3b020c8c80] user: mistachkin branch: trunk, size: 24696 | |
2015-06-09
| ||
23:13 | Add BusyTimeout connection string property to set the busy timeout to be used by the SQLite core library. file: [99b9a26281] check-in: [873c720835] user: mistachkin branch: trunk, size: 24000 | |
2015-06-03
| ||
02:16 | Support alternate VFSs when opening a database connection. More work on ZipVFS integration. This is an interim check-in and needs testing. file: [0857128004] check-in: [6bf64f992e] user: mistachkin branch: zipvfs, size: 23528 | |
2015-02-12
| ||
23:53 | Add PrepareRetries connection string property to allow the maximum number of retries when preparing a query to be overridden. Fix for [647d282d11]. file: [798ddf8656] check-in: [39f91f897d] user: mistachkin branch: trunk, size: 22244 | |
2014-08-08
| ||
21:42 | Apparently, using nullable value types in DbConnectionStringBuilder derived classes can cause issues; therefore, avoid it. file: [ffee419568] check-in: [29c37848ff] user: mistachkin branch: trunk, size: 21604 | |
2014-07-30
| ||
00:39 | Minimize usage of the 'Use_SQLiteConvert_DefaultDbType' and 'Use_SQLiteConvert_DefaultTypeName' settings. Fix for [58ed318f2f]. file: [93c1740ebf] check-in: [69065c8e3b] user: mistachkin branch: trunk, size: 21561 | |
2014-05-30
| ||
21:54 | Fix typo in previous check-in. file: [bb0c77d388] check-in: [9dcd74d93e] user: mistachkin branch: trunk, size: 21466 | |
21:53 | Add SharedFlags static property to the SQLiteConnection class. Make the display names for connection string properties more consistent. file: [da4bfc78c7] check-in: [e4b0d17481] user: mistachkin branch: trunk, size: 21465 | |
2014-05-29
| ||
04:52 | Add the DefaultDbType and DefaultTypeName connection string properties to the SQLiteConnectionStringBuilder class. file: [96696c00cd] check-in: [67d18c8ae3] user: mistachkin branch: trunk, size: 20510 | |
2014-05-27
| ||
18:43 | Expose the 'Uri' and 'FullUri' properties in the design-time dialogs. file: [c50ebfb524] check-in: [96e1f973fa] user: mistachkin branch: trunk, size: 19458 | |
2013-05-30
| ||
00:44 | Add DateTimeFormatString connection string property to allow the DateTime format string used for all parsing and formatting to be overridden. Disable use of the new connection string parsing algorithm when the No_SQLiteConnectionNewParser environment variable is set. Pursuant to [bbdda6eae2]. file: [f98b313907] check-in: [4f933521a1] user: mistachkin branch: trunk, size: 19408 | |
2013-02-07
| ||
04:35 | Add HexPassword connection string property to work around the inability to include a literal semicolon in a connection string property value. Pursuant to [1c456ae75f]. file: [fa9bd08e31] check-in: [d33b63cd51] user: mistachkin branch: trunk, size: 18726 | |
2012-08-24
| ||
10:00 | Add support for testing the sqlite3_win32_set_directory function. Also, add the ToFullPath connection string property. file: [80f290c778] check-in: [7e3aa2f8bb] user: mistachkin branch: trunk, size: 17460 | |
2012-07-22
| ||
06:54 | Remove all superfluous UTF-8 byte-order-marks. file: [77fc41fd71] check-in: [2c82e6c1a3] user: mistachkin branch: trunk, size: 16939 | |
2012-07-21
| ||
06:56 | Change the default value for the Synchronous connection string property to Full to match the default used by the SQLite core library itself. Add the ability to skip applying default connection settings to opened databases via the new SetDefaults connection string property. Add the FullUri connection string property to the SQLiteConnectionStringBuilder class. Refactor and enhance all the connection string property handling code in the SQLiteConnection.Open method. Consistently use the three argument overload of the String.Format method (i.e. the one that takes a CultureInfo). file: [4cf6c47434] check-in: [9dfa1577a6] user: mistachkin branch: trunk, size: 16942 | |
2012-01-25
| ||
17:09 | Add enumerated Flags property to the SQLiteConnection class to control extra behavioral options. file: [6c6cf4e8b7] check-in: [6a90082172] user: mistachkin branch: trunk, size: 16068 | |
2011-12-20
| ||
00:07 | Correction to the previous commit. Actually, instead of throwing exceptions directly, always attempt to convert non-null values to the required type and let the converter itself throw an exception if necessary. file: [e4ab4e113a] check-in: [4fbdb092f8] user: mistachkin branch: trunk, size: 15275 | |
00:05 | Throw an exception if an unsupported object type is detected in the DateTimeFormat property. file: [ca4575be17] check-in: [68b19e5f02] user: mistachkin branch: trunk, size: 15435 | |
00:03 | Support the DateTimeKind and BaseSchemaName connection string properties in the SQLiteConnectionStringBuilder class. Also, make getting and setting the DateTimeFormat property slightly more robust. file: [833b2579a1] check-in: [20ee87087b] user: mistachkin branch: trunk, size: 15357 | |
2011-07-11
| ||
19:40 | Refactor the logging interface to be thread-safe and 'self-initializing'. Stop ignoring errors returned by sqlite3_config(SQLITE_CONFIG_LOG). Provide a default log handler and allow it to be added/removed dynamically. Allow logging to be temporarily enabled/disabled without modifying the underlying delegates. file: [a7a63496d7] check-in: [1d955a6031] user: mistachkin branch: trunk, size: 13569 | |
2011-07-01
| ||
11:36 | Remove unused 'using' statements from System.Data.SQLite. file: [4bccb95856] check-in: [b270e24e93] user: mistachkin branch: build-enhancements, size: 13568 | |
2010-08-11
| ||
16:14 | Updates for 67 release file: [7dd3cdce09] check-in: [09564699fe] user: rmsimpson branch: sourceforge, size: 13607 | |
2010-08-05
| ||
02:03 | 1.0.66.0 file: [fefa2f3c51] check-in: [7ec6a118ce] user: rmsimpson branch: sourceforge, size: 13164 | |
2009-04-28
| ||
17:09 | 1.0.61.0 file: [f15d59d228] check-in: [734737fbb6] user: rmsimpson branch: sourceforge, size: 13173 | |
2008-08-11
| ||
21:12 | 1.0.56.0 file: [7a59eb4763] check-in: [faaaeb7bd7] user: rmsimpson branch: sourceforge, size: 13132 | |
2008-08-08
| ||
05:42 | 1.0.56.0 beta file: [1296767414] check-in: [85ed84191d] user: rmsimpson branch: sourceforge, size: 12884 | |
2008-08-06
| ||
21:40 | 1.0.55.0 file: [e45921d94d] check-in: [24425920c8] user: rmsimpson branch: sourceforge, size: 12242 | |
2008-07-26
| ||
04:34 | 1.0.54.0 file: [de609a00ab] check-in: [41d8f0f895] user: rmsimpson branch: sourceforge, size: 10836 | |
2008-05-28
| ||
08:18 | 1.0.49.0 file: [8de60522df] check-in: [f3f45cefd1] user: rmsimpson branch: sourceforge, size: 10305 | |
2007-09-25
| ||
22:45 | 1.0.45.0 file: [30929ed820] check-in: [5a232b012b] user: rmsimpson branch: sourceforge, size: 9118 | |
2006-08-06
| ||
17:55 | 1.0.32.0 file: [a49fb01ae2] check-in: [6b4fd5077c] user: rmsimpson branch: sourceforge, size: 7029 | |
2006-01-27
| ||
22:41 | Support Enlist property file: [1acb07d9be] check-in: [a93b89dbd9] user: rmsimpson branch: sourceforge, size: 6996 | |
2006-01-10
| ||
18:41 | Supports encrypted databases file: [15fdb10a55] check-in: [0b89858658] user: rmsimpson branch: sourceforge, size: 6477 | |
2005-08-22
| ||
18:18 | 1.0.15 file: [7f31c849b4] check-in: [4ff57a0919] user: rmsimpson branch: sourceforge, size: 6139 | |
2005-08-17
| ||
21:13 | Event optimizations using generics file: [8c671633ae] check-in: [1b0be7f408] user: rmsimpson branch: sourceforge, size: 6088 | |
2005-08-16
| ||
19:12 | 1.0.14 file: [0735552622] check-in: [4453746b7a] user: rmsimpson branch: sourceforge, size: 6095 | |
2005-08-05
| ||
06:14 | 1.0.12 final file: [08f1611e9b] check-in: [9e5f1b5614] user: rmsimpson branch: sourceforge, size: 5316 | |
2005-08-04
| ||
15:25 | 1.0.12 updates and cleanup file: [e5722182a9] check-in: [3ebf811b1e] user: rmsimpson branch: sourceforge, size: 5000 | |
2005-03-24
| ||
19:37 | 1.08 Refresh, added documentation file: [1b04f7a2e3] check-in: [b56fd4b082] user: rmsimpson branch: sourceforge, size: 4981 | |
2005-03-01
| ||
16:04 | Added: Initial revision file: [9c1e25ccf7] check-in: [ec237b0123] user: rmsimpson branch: sourceforge, size: 4696 | |