[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / Mono.Data.Sqlite / Mono.Data.Sqlite_2.0 / ChangeLog
index b575f9260c1ae6da24a57be5d45083835e7c7447..d1fb5972d1040513b5a02c47469680fe5298ab91 100644 (file)
@@ -1,3 +1,36 @@
+2009-07-10  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * SQLiteConnection.cs : remove Console.WriteLine().
+
+2009-06-18  Marek Habersack  <mhabersack@novell.com>
+
+       * UnsafeNativeMethods.cs: added import of the old sqlite3_open
+       function to make code compatible with sqlite3 versions older than
+       3.5.0
+
+       * SQLite3.cs: added a workaround for systems which come with
+       sqlite3 older than 3.5.0 (which added new call sqlite3_open_v2,
+       used in this version of Mono.Data.Sqlite). If this function is not
+       found in the native shared library, the old sqlite3_open is used
+       as fallback.
+
+2009-02-04  Marek Habersack  <mhabersack@novell.com>
+
+       * SQLite3.cs, SQLite3_UTF16.cs, SQLiteBase.cs, SQLiteFunction.cs,
+       UnsafeNativeMethods.cs: fixes for custom functions and collations
+       creation with sqlite3. Fixes bug #470042. Patch from John Millikin
+       <jmillikin@gmail.com>, thanks!
+
+2008-12-08  Zoltan Varga  <vargaz@gmail.com>
+
+       * SQLite3.cs: Avoid IntPtr.ToInt32 () to convert between IntPtr's and integers
+       since it is not 64 bit safe. Fixes #457038.
+
+2008-07-06  Sebastien Pouliot  <sebastien@ximian.com> 
+
+       * SqliteDataSourceEnumerator.cs: Replace a few Type.GetType by typeof
+       [Found using Gendarme AvoidTypeGetTypeForConstantStringsRule]
+
 2007-12-06  Marek Habersack  <mhabersack@novell.com>
 
        * SQLiteFunction.cs: scan only assemblies which reference Sqlite,
@@ -9,8 +42,8 @@
 
 2007-06-03  Kamil Skalski  <nazgul@nemerle.org>
 
-       * SQLiteConvert.cs: Port function for converting native UTF8 string\r
-      into managed string from the old SqliteClient implementation.\r
+       * SQLiteConvert.cs: Port function for converting native UTF8 string
+      into managed string from the old SqliteClient implementation.
       Use it instead of PtrToStrAuto, which fails on Windows.
 
 2007-02-20  Marek Habersack  <grendello@gmail.com>