[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / Mono.Data.Sqlite / Mono.Data.Sqlite_2.0 / ChangeLog
index 4b275d3755b748cfe1b80e0f53eae667591071c2..d1fb5972d1040513b5a02c47469680fe5298ab91 100644 (file)
@@ -1,3 +1,51 @@
+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,
+       saves heap memory.
+
+2007-07-31  Ben Motmans  <ben.motmans@gmail.com>
+
+       * SR.Designer.cs: use the correct resource name
+
+2007-06-03  Kamil Skalski  <nazgul@nemerle.org>
+
+       * 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>
 
        * SQLite3.cs: handle sqlite3_prepare_v2 absent from the library,