System.Data.SQLite
Check-in [aae97713fa]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
SHA1 Hash:aae97713fafcdb33dc30ecd337ce63c2152869a5
Date: 2012-03-28 14:51:04
User: mistachkin
Comment:Fix typo in version history.
Tags And Properties
Changes
hide diffs side-by-side diffs patch

Changes to Doc/Extra/version.html

52 52 <li>Add support for the native <a href="http://www.sqlite.org/backup.html">SQLite Online Backup API</a>. Fix for <a href="http://system.data.sqlite.org/index.html/info/c71846ed57">[c71846ed57]</a>.</li> 53 53 <li>Acquire and hold a static data lock while checking if the native SQLite library has been initialized to prevent a subtle race condition that can result in superfluous error messages. Fix for <a href="http://system.data.sqlite.org/index.html/info/72905c9a77">[72905c9a77]</a>.</li> 54 54 <li>Support tracing of all parameter binding activity and use the connection flags to control what is traced.</li> 55 55 <li>When converting a DateTime instance of an &quot;Unspecified&quot; kind to a string, use the same kind as the connection, if available.</li> 56 56 <li>Add overload of the SQLiteDataReader.GetValues method that returns a NameValueCollection.</li> 57 57 <li>Add static ToUnixEpoch method to the SQLiteConvert class to convert a DateTime value to the number of whole seconds since the Unix epoch.</li> 58 58 <li>In the implicit conversion operators (to IntPtr) for both the SQLiteConnectionHandle and SQLiteStatementHandle classes, return IntPtr.Zero if the instance being converted is null.</li> 59 - <li>Write warning message to the active trace listners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See <a href="http://system.data.sqlite.org/index.html/info/4bbf851fa5">[4bbf851fa5]</a>.</li> 59 + <li>Write warning message to the active trace listeners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See <a href="http://system.data.sqlite.org/index.html/info/4bbf851fa5">[4bbf851fa5]</a>.</li> 60 60 <li>When tracing SQL statements to be prepared, bypass the internal length limit of the sqlite3_log function by using the SQLiteLog class directly instead. Also, detect null and/or empty strings and emit a special message in that case.</li> 61 61 <li>For the setup, the Visual Studio task should only be initially checked if the GAC task is available and vice-versa.</li> 62 62 <li>Improve compatibility with custom command processors by using __ECHO instead of _ECHO in batch tools.</li> 63 63 <li>Add OpenAndReturn method to the SQLiteConnection class to open a connection and return it.</li> 64 64 <li>Add missing CheckDisposed calls to the SQLiteConnection class.</li> 65 65 <li>Add missing throw statement to the SQLiteConnection class.</li> 66 66 <li>Make sure the interop project uses /fp:precise for Windows CE.</li>

Changes to readme.htm

197 197 <li>Add support for the native <a href="http://www.sqlite.org/backup.html">SQLite Online Backup API</a>. Fix for [c71846ed57].</li> 198 198 <li>Acquire and hold a static data lock while checking if the native SQLite library has been initialized to prevent a subtle race condition that can result in superfluous error messages. Fix for [72905c9a77].</li> 199 199 <li>Support tracing of all parameter binding activity and use the connection flags to control what is traced.</li> 200 200 <li>When converting a DateTime instance of an &quot;Unspecified&quot; kind to a string, use the same kind as the connection, if available.</li> 201 201 <li>Add overload of the SQLiteDataReader.GetValues method that returns a NameValueCollection.</li> 202 202 <li>Add static ToUnixEpoch method to the SQLiteConvert class to convert a DateTime value to the number of whole seconds since the Unix epoch.</li> 203 203 <li>In the implicit conversion operators (to IntPtr) for both the SQLiteConnectionHandle and SQLiteStatementHandle classes, return IntPtr.Zero if the instance being converted is null.</li> 204 - <li>Write warning message to the active trace listners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See [4bbf851fa5].</li> 204 + <li>Write warning message to the active trace listeners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See [4bbf851fa5].</li> 205 205 <li>When tracing SQL statements to be prepared, bypass the internal length limit of the sqlite3_log function by using the SQLiteLog class directly instead. Also, detect null and/or empty strings and emit a special message in that case.</li> 206 206 <li>For the setup, the Visual Studio task should only be initially checked if the GAC task is available and vice-versa.</li> 207 207 <li>Improve compatibility with custom command processors by using __ECHO instead of _ECHO in batch tools.</li> 208 208 <li>Add OpenAndReturn method to the SQLiteConnection class to open a connection and return it.</li> 209 209 <li>Add missing CheckDisposed calls to the SQLiteConnection class.</li> 210 210 <li>Add missing throw statement to the SQLiteConnection class.</li> 211 211 <li>Make sure the interop project uses /fp:precise for Windows CE.</li>

Changes to www/news.wiki

13 13 <li>Add support for the native [http://www.sqlite.org/backup.html|SQLite Online Backup API]. Fix for [c71846ed57].</li> 14 14 <li>Acquire and hold a static data lock while checking if the native SQLite library has been initialized to prevent a subtle race condition that can result in superfluous error messages. Fix for [72905c9a77].</li> 15 15 <li>Support tracing of all parameter binding activity and use the connection flags to control what is traced.</li> 16 16 <li>When converting a DateTime instance of an &quot;Unspecified&quot; kind to a string, use the same kind as the connection, if available.</li> 17 17 <li>Add overload of the SQLiteDataReader.GetValues method that returns a NameValueCollection.</li> 18 18 <li>Add static ToUnixEpoch method to the SQLiteConvert class to convert a DateTime value to the number of whole seconds since the Unix epoch.</li> 19 19 <li>In the implicit conversion operators (to IntPtr) for both the SQLiteConnectionHandle and SQLiteStatementHandle classes, return IntPtr.Zero if the instance being converted is null.</li> 20 - <li>Write warning message to the active trace listners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See [4bbf851fa5].</li> 20 + <li>Write warning message to the active trace listeners (for the Debug build configuration only) if a column type or type name cannot be mapped properly. See [4bbf851fa5].</li> 21 21 <li>When tracing SQL statements to be prepared, bypass the internal length limit of the sqlite3_log function by using the SQLiteLog class directly instead. Also, detect null and/or empty strings and emit a special message in that case.</li> 22 22 <li>For the setup, the Visual Studio task should only be initially checked if the GAC task is available and vice-versa.</li> 23 23 <li>Improve compatibility with custom command processors by using __ECHO instead of _ECHO in batch tools.</li> 24 24 <li>Add OpenAndReturn method to the SQLiteConnection class to open a connection and return it.</li> 25 25 <li>Add missing CheckDisposed calls to the SQLiteConnection class.</li> 26 26 <li>Add missing throw statement to the SQLiteConnection class.</li> 27 27 <li>Make sure the interop project uses /fp:precise for Windows CE.</li>