[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / Mono.Data.Sqlite / Mono.Data.Sqlite_2.0 / ChangeLog
index 82e0fd6029a3302c10a76cea4ebdb1a6b3a12c3b..d1fb5972d1040513b5a02c47469680fe5298ab91 100644 (file)
@@ -1,7 +1,28 @@
+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>
 
-       Backport of r120995.
-       
        * SQLite3.cs: Avoid IntPtr.ToInt32 () to convert between IntPtr's and integers
        since it is not 64 bit safe. Fixes #457038.
 
@@ -21,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>