[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / Mono.Data.Sqlite / Mono.Data.Sqlite_2.0 / ChangeLog
1 2009-07-10  Atsushi Enomoto  <atsushi@ximian.com>
2
3         * SQLiteConnection.cs : remove Console.WriteLine().
4
5 2009-06-18  Marek Habersack  <mhabersack@novell.com>
6
7         * UnsafeNativeMethods.cs: added import of the old sqlite3_open
8         function to make code compatible with sqlite3 versions older than
9         3.5.0
10
11         * SQLite3.cs: added a workaround for systems which come with
12         sqlite3 older than 3.5.0 (which added new call sqlite3_open_v2,
13         used in this version of Mono.Data.Sqlite). If this function is not
14         found in the native shared library, the old sqlite3_open is used
15         as fallback.
16
17 2009-02-04  Marek Habersack  <mhabersack@novell.com>
18
19         * SQLite3.cs, SQLite3_UTF16.cs, SQLiteBase.cs, SQLiteFunction.cs,
20         UnsafeNativeMethods.cs: fixes for custom functions and collations
21         creation with sqlite3. Fixes bug #470042. Patch from John Millikin
22         <jmillikin@gmail.com>, thanks!
23
24 2008-12-08  Zoltan Varga  <vargaz@gmail.com>
25
26         * SQLite3.cs: Avoid IntPtr.ToInt32 () to convert between IntPtr's and integers
27         since it is not 64 bit safe. Fixes #457038.
28
29 2008-07-06  Sebastien Pouliot  <sebastien@ximian.com> 
30
31         * SqliteDataSourceEnumerator.cs: Replace a few Type.GetType by typeof
32         [Found using Gendarme AvoidTypeGetTypeForConstantStringsRule]
33
34 2007-12-06  Marek Habersack  <mhabersack@novell.com>
35
36         * SQLiteFunction.cs: scan only assemblies which reference Sqlite,
37         saves heap memory.
38
39 2007-07-31  Ben Motmans  <ben.motmans@gmail.com>
40
41         * SR.Designer.cs: use the correct resource name
42
43 2007-06-03  Kamil Skalski  <nazgul@nemerle.org>
44
45         * SQLiteConvert.cs: Port function for converting native UTF8 string
46       into managed string from the old SqliteClient implementation.
47       Use it instead of PtrToStrAuto, which fails on Windows.
48
49 2007-02-20  Marek Habersack  <grendello@gmail.com>
50
51         * SQLite3.cs: handle sqlite3_prepare_v2 absent from the library,
52         it's a new API, added in Nov 2006 to sqlite3 upstream, so it's
53         likely it won't be found on many systems.
54
55         * SQLiteCommand.cs: Added a backward compatibility method.
56
57 2007-02-16  Marek Habersack  <grendello@gmail.com>
58
59         * SQLiteTransaction.cs: unseal the class.
60
61         * SQLiteParameterCollection.cs: unseal the class.
62
63         * SQLiteException.cs: unseal the class.
64
65         * SQLiteDataReader.cs: unseal the class.
66
67         * SQLiteConnectionStringBuilder.cs: unseal the class.
68
69         * SQLiteFunctionAttribute.cs: unseal the class.
70
71         * SqliteDataSourceEnumerator.cs: unseal the class.
72
73         * SQLiteConnection.cs: unseal the class.
74
75         * SQLiteFactory.cs: unseal the class.
76
77         * SQLiteCommandBuilder.cs: unseal the class.
78
79         * SQLiteParameter.cs: unseal the class.
80
81         * SQLiteCommand.cs: unseal the class.
82
83 2007-02-05  Marek Habersack  <grendello@gmail.com>
84
85         * SQLiteConnectionStringBuilder.cs: Uncomment the
86         PasswordPropertyText attribute for the Password property.
87
88 2007-02-03  Marek Habersack  <grendello@gmail.com>
89
90         * UnsafeNativeMethods.cs: New file.
91
92         * SR.Designer.cs: New file.
93
94         * SQLiteTransaction.cs: New file.
95
96         * SQLiteStatement.cs: New file.
97
98         * SQLiteParameter.cs: New file.
99
100         * SQLiteParameterCollection.cs: New
101         file.
102
103         * SQLiteMetaDataCollectionNames.cs: New
104         file
105
106         * SQLiteKeyReader.cs: New file (not
107         used for the moment)
108
109         * SQLiteFunction.cs: New file
110
111         * SQLiteFunctionAttribute.cs: New file
112
113         * SQLiteFactory.cs: New file
114
115         * SQLiteException.cs: New file
116
117         * SQLiteEnlistment.cs: New file
118
119         * SqliteDataSourceEnumerator.cs: Moved
120         to the new location.
121
122         * SQLiteDataReader.cs: New file
123
124         * SQLiteDataAdapter.cs: New file
125
126         * SQLiteConvert.cs: New file
127
128         * SQLiteConnectionStringBuilder.cs: New
129         file
130
131         * SQLiteConnection.cs: New file
132
133         * SQLiteCommand.cs: New file
134
135         * SQLiteCommandBuilder.cs: New file
136
137         * SQLiteBase.cs: New file
138
139         * SQLite3_UTF16.cs: New file
140
141         * SQLite3.cs: New file