* Mono.Posix.dll.sources: Rename Mono.Posix to Mono.Unix.
[mono.git] / mcs / class / Npgsql / ChangeLog
1 2004-11-04  Raja R Harinath  <rharinath@novell.com>
2
3         * Makefile (EXTRA_DISTFILES): Fix for 'make dist'.
4
5 2004-09-30  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
6     * NpgsqlTypes/FastPath.cs,
7     NpgsqlTypes/FastPathArg.cs,
8     NpgsqlTypes/LargeObject.cs,
9     NpgsqlTypes/LargeObjectManager.cs,
10     Npgsql.dll.sources: Added large object support. Thanks Emiliano Necciari (e dot necciari at blogic dot it) for the patch.
11     
12
13 2004-09-26  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
14
15     * Npgsql/NpgsqlDataReader.cs:
16         GetBytes: Added a little fix for proper handling of getbytes with current Npgsql semantics in mind. For while, we just support offset value of 0 as we
17         read all the bytes field value at a time. So there is no copy when offset is not 0.
18         
19 2004-09-25  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
20
21     * Npgsql/NpgsqlCommand.cs:
22         GetParseCommandText: Fixed an incorrect patch. Thanks Martin ( martijn at boland dot org) for heads up.
23
24 2004-09-25  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
25
26     * Npgsql/NpgsqlCommand.cs:
27         ReplaceParameterValue: Fixed parameter replace when next byte after parameter name is '\\r'. Thanks Ivan Radovanovic rivan at sezampro dot yu for the fix.
28         GetParseCommandText: Added a workaround to have some queries which are giving parameter type problems. Thanks Martin ( martijn at boland dot org) for bug report.
29
30 2004-09-23  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
31
32     * NpgsqlTypes/NpgsqlTypesHelper.cs:
33         ConvertToBackend: Added support for System.Enum types. Now enumerated types can be used correctly as a paramater value. Thanks Martin ( martijn at boland dot org) for the heads up.
34
35 2004-09-18  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
36
37     * Npgsql/NpgsqlCommand.cs:
38         GetClearCommandText: Fixed an infinite loop when trying to use a parameter whose name is equals to same type name.
39         i.e.: parameter name :text which would conflict with :text parameter name which was being added in the replacement string.
40     * NpgsqlTypes/NpgsqlTypeConverters.cs:
41         BasicNativeToBackendTypeConverter.ToString: Fixed handling of strings with backslashes. Now they are properly escaped.
42         
43 2004-09-18  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
44
45         * NpgsqlCommand.cs,
46         NpgsqlConnector.cs:  Improved portal and plan name creation to use an unique number from NpgsqlConnector instead of using an static field in NpgsqlCommand. Thanks Martin ( martijn at boland dot org) for the heads up.
47
48 2004-09-15  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
49     * Npgsql/NpgsqlRowDescription.cs:
50         FieldIndex: Really added support for case insensitive fields index lookup. Thanks Martin ( martijn at boland dot org)
51
52 2004-09-14  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
53
54     * Npgsql/NpgsqlRowDescription.cs:
55         FieldIndex: Added support for case insensitive fields index lookup. Thanks Martin ( martijn at boland dot org)
56         
57 2004-09-12  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
58
59         * NpgsqlTypes/NpgsqlTypesHelper:
60                 VerifyDefaultTypesMap: Added DbType.Byte support. Thanks Martin ( martijn at boland dot org)
61                 for heads up.
62                 
63 2004-09-12  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
64
65         * NpgsqlTypes/NpgsqlTypesHelper:
66                 ConvertToBackend: Fixed code to handle null values properly when using extended query mode.
67                 Fix bug 955 in gborg.
68
69 2004-09-11  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
70
71         * Npgsql/NpgsqlConnection.cs: 
72                 Dispose: Improved implementation. Also added warning logging for 
73                 NpgsqlConnection leakings.
74                 Close: Fixed code to allow calling many times even when being disposed.
75         * Npgsql/NpgsqlConnection.resx:
76                 Added new warning logging message for NpgsqlConnection leakings.
77         * Npgsql/NpgsqlConnector.cs:
78                 IsValid: new method to check if Connector is still valid.
79         * Npgsql/NpgsqlConnectorPool.cs:
80                 GetPooledConnector: Improved to check validity of Connector.
81                 FixPoolCountBecauseOfConnectionDisposeFalse: new method to fix the connection pool count
82                 because NpgsqlConnection leaking. This way, uses doesn't run out of connections from pool.
83
84 2004-09-07  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
85
86         * NpgsqlException.cs:  Added support for deserialization of NpgsqlException.
87
88         * NpgsqlState.cs: Added missing handling of NoData message.
89         
90
91 2004-07-02  Raja R Harinath  <rharinath@novell.com>
92
93         * Makefile (OVERRIDE_BARE_TARGETS): Remove.
94         ($(the_lib)): Make dependency explicit.
95
96 2004-06-28  Raja R Harinath  <rharinath@novell.com>
97
98         * Makefile (%.resources): Use $(RESGEN).
99
100 2004-06-22  Raja R Harinath  <rharinath@novell.com>
101
102         * Makefile: Use $(PLATFORM_PATH_SEPARATOR) in MONO_PATH.
103
104 2004-06-21  Raja R Harinath  <rharinath@novell.com>
105
106         * Makefile (LIBRARY_SNK): Sign with Npgsql/Npgsql.snk.
107
108 2004-06-18  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
109         * Synchronized files with gborg cvs up to release 0.6.
110
111 2004-05-29  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
112         * Npgsql/NpgsqlConnection.cs: Added workaround for redhat server versions.
113         It returns 7.3.4-RH as its server version. Thanks Jaroslaw Kowalski 
114 (jaak@zd.com.pl) for the patch.
115
116 2004-05-24  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
117         * Npgsql/NpgsqlConnection.cs: Fixed bug when handling Unicode connections.
118         Fixes Gborg bug 752.
119         Thanks stehule@kix.fsv.cvut.cz for the patch.
120
121 2004-05-23  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
122         
123         * Npgsql/NpgsqlConnection.cs: Fixed bug which prevented Npgsql to
124 connect to cvs built servers which had devel in its version string.
125         
126 2004-05-22  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
127
128         Npgsql/NpgsqlCommand.cs,
129         Npgsql/NpgsqlConnection.cs,
130         Npgsql/NpgsqlDataReader.cs,
131         Npgsql/NpgsqlException.cs,
132         Npgsql/NpgsqlTransaction.cs,
133         Npgsql/Design/ConnectionStringEditor.cs,
134         Npgsql/Design/ConnectionStringEditorForm.cs,
135         Npgsql/Design/NpgsqlParameterConverter.cs,
136         Npgsql/Design/NpgsqlParametersEditor.cs,
137         NpgsqlTypes/NpgsqlTypesHelper.cs: Commit log by 
138         Glen Parker (glenebob@nwlink.com): Bug #772 ("Using 
139         Command and Prepare adds single quotes to strings twice")
140         is fixed  :-)   It was broken when running on the version 3
141         protocol (extended query support) on PostgreSQL 7.4. 
142         Some of the files in Design were formatted with macintosh line 
143         terminators. This was screwing up the xmldoc generator in csc, 
144         so I reformatted to make it work.
145         I've added some essential xmldoc comments (<summary> tags).  Much work
146 remains here, but I wanted to get a few in on common functions and
147 properties.
148
149         The .build file will now generate the Npgsql.xml file, next to the .dll
150 file.  I removed the existing Npgsql.xml from CVS.
151
152         Thanks Glen Parker for this patch.
153
154
155 2004-05-20  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
156
157         NpgsqlAsciiRow.cs,
158         NpgsqlBackEndKeyData.cs,
159         NpgsqlBinaryRow.cs,
160         NpgsqlCommand.cs,
161         NpgsqlConnectedState.cs,
162         NpgsqlConnection.cs,
163         NpgsqlConnection.resx,
164         NpgsqlConnector.cs,
165         NpgsqlConnectorPool.cs,
166         NpgsqlError.cs,
167         NpgsqlMediator.cs,
168         NpgsqlMessageTypes.cs,
169         NpgsqlPasswordPacket.cs,
170         NpgsqlQuery.cs,
171         NpgsqlRowDescription.cs,
172         NpgsqlStartupPacket.cs,
173         NpgsqlState.cs,
174         PGUtil.cs,
175         NpgsqlTypes/NpgsqlTypesHelper.cs : - store protocol version as an enum, keep numbers as protocol specific
176         - split more protocol handlers between version 2 and version 3
177         - split MessageTypes class on ver2/ver3 and add remaining types for ver3        - removed handlers for deprecated protocol message types
178         - store BackendKeyData in its own member on Mediator
179         - Store ParameterStatus objects in a key map on Mediator
180         - Get backend version now from the Mediator if possible
181         - Rewrite parsers for server version and connection string
182         - Store server version numericially (in a new class ServerVersion)
183         - As usual, lots of code cleanup/commenting/etc.
184
185         Thanks very much Glen Parker (glenebob@nwlink.com) for this patch.
186
187 2004-05-20  Raja R Harinath  <rharinath@novell.com>
188
189         * Makefile (%.resources): Use INTERNAL_RESGEN.
190
191 2004-05-13  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
192
193         * Npgsql/NpgsqlHashAlgorithm.cs: Changed exception type from Exception t
194 o InvalidOperationException when calling the Hash property and hash value is nul
195 l. Thanks Gonzalo Paniagua Javier <gonzalo@ximian.com> for catching that.
196
197 2004-05-09  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
198         * HashAlgorithm.cs,
199         NpgsqlAsciiRow.cs,
200         NpgsqlBinaryRow.cs,
201         NpgsqlClosedState.cs,
202         NpgsqlCommand.cs,
203         NpgsqlCommandBuilder.cs,
204         NpgsqlConnection.cs,
205         NpgsqlDataReader.cs,
206         NpgsqlException.cs,
207         NpgsqlParameterCollection.cs,
208         NpgsqlReadyState.cs,
209         NpgsqlTransaction.cs: Improved exception handling. Now Npgsql throws mor
210 e meaningful exceptions instead of throw NpgsqlException which are now exclusive
211 ly to sign server errors. Thanks Glen Parker (glenebob@nwlink.com) for the patch.
212
213
214
215 2004-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
216
217         * Makefile:
218         * Npgsql.dll.resources: all the resources command line options are now
219         in a separate response file.
220
221 2004-05-04  Jaroslaw Kowalski <jaak@zd.com.pl>
222         * Npgsql/NpgsqlDataReader.cs: Fixed RecordsAffected to properly return -1 after "create table" and similar commands.
223
224 2004-05-01  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
225
226         * Npgsql/NpgsqlCommand.cs,
227         Npgsql/NpgsqlConnection.cs,
228         Npgsql/NpgsqlConnector.cs,
229         Npgsql/NpgsqlConnectorPool.cs,
230         Npgsql/NpgsqlError.cs,
231         Npgsql/NpgsqlException.cs,
232         Npgsql/NpgsqlParameterCollection.cs,
233         NpgsqlTypes/NpgsqlTypesHelper.cs: Improved exception support. Now NpgsqlException as well as NpgsqlError provide much more information. Thanks Glen Parker (glenebob@nwlink.com) for the patch.
234
235 2004-04-30  Todd Berman  <tberman@sevenl.net>
236
237         * Npgsql/AssemblyInfo.cs: use the proper path to the .pub file
238
239 2004-04-30  Duncan Mak  <duncan@ximian.com>
240
241         * Npgsql/AssemblyInfo.cs: Enable delay signing, using Npgsql.pub.
242
243         * Npgsql/Npgsql.pub: Added to CVS.
244
245 2004-04-21  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
246         * Npgsql/NpgsqlDataAdapter.cs: Changed RowUpdated and RowUpdating prefix to Npgsql.
247         * Npgsql/NpgsqlClosedState.cs: Removed dependency in TlsException. Carlos Guzman will change this excpetion to internal.
248
249         * Npgsql/NpgsqlCommand.cs
250         * Npgsql/NpgsqlCommand.resx
251         * Npgsql/NpgsqlConnection.cs
252         * Npgsql/NpgsqlConnection.resx
253         * Npgsql/NpgsqlDataAdapter.cs
254         * Npgsql/NpgsqlError.cs
255         * Npgsql/NpgsqlException.cs
256         * Npgsql/NpgsqlException.resx
257         * Npgsql/NpgsqlMediator.cs
258         * Npgsql/NpgsqlState.cs
259         * Npgsql/NpgsqlState.resx
260         * Npgsql/PGUtil.cs : Added initial error handling code improvements. Thanks Glen Parker (glenebob@nwlink.com) for the patch. NpgsqlException now gives aceess to error collection through the Errors property. This property return a collection of NpgsqlErrors objects. Also it gives access to error message, hint, severity and code. This fixes the feature request 689 in gborg.
261
262
263
264 2004-04-09  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
265         * Npgsql/NpgsqlDataAdapter.cs: Fixed DataAdapter to raise the RowUpdating and RowUpdated events. This also fixes some issues in gborg 710 bug. This modification may have broken CommandBuilder support. Working on that.
266
267 2004-03-28  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
268         * Npgsql/NpgsqlTransaction.cs: Fixed a bug where rollback was being called when disposing NpgsqlTransaction objects even when transaction was sucessfully commited. Fixes bug 725 in gborg. Thanks melkor (melkor@adinet.com.uy) for spotting that.
269
270 2004-03-28  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
271         * Npgsql/NpgsqlConnection.cs: Implemented IClonable interface in NpgsqlConnection class. Thanks Juliano Barbosa for pointing it out.
272
273 2004-03-22  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
274         * Npgsql/NpgsqlAsciiRow.cs
275         * Npgsql/NpgsqlBinaryRow.cs
276         * Npgsql/NpgsqlDataReader.cs: Fixed NpgsqlDataReader.IsDBNull(). It wasn't working for postgresql 7.4+. Thanks Glen Parker (glenebob@nwlink.com) for the patch.
277
278
279 2004-03-13  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
280
281         * Npgsql/NpgsqlConnection.cs:
282         * Npgsql/NpgsqlClosedState.cs: Added support for SSL callbacks points. Now, client applications can provide the callbacks. Npgsql provide a default callback implementation which always assumes the certificate is ok. This allows easy use as client don't need to provide callback to use ssl connections. This also fixes bug 705 in gborg.
283         * NpgsqlTypes/NpgsqlTypesHelper: Applied patch to correctly parse datetimes values with timezone information. Thanks Glen Parker <glenebob@nwlink.com> for the patch.
284         
285
286 2004-03-06  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
287
288         * Npgsql/NpgsqlConnectorPool.cs: Fixed bug 706 in gborg. Now Max timeout will be working correctly. Thanks Sami Kuhmonen <feenix@iqs.fi> for the patch.
289
290 2004-02-29  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
291         * Npgsql/NpgsqlConnection.cs: Better handling of connection encoding. Added support for encoding and connection timeout in connection string.
292         * Npgsql/NpgsqlConnectorPool.cs: Added support for timeout and max connection pool.
293
294 2004-02-28  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
295
296         * Npgsql/NpgsqlConnector.cs: Added support for connection encoding.
297         * Npgsql/NpgsqlConnection.cs: Better handling of connection encoding.
298         * Npgsql/NpgsqlCommand.cs: Fixed an Invalid Index error when executing ExecuteScalar() method with an empty resultset. Thanks Lynn A. Roth for the fix. This fixes bug 687 in gborg.
299
300
301 2004-02-25  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
302
303         * Npgsql/NpgsqlDataReader.cs: Fixed a OutOfBoundsException when trying to access an element after have read all elements. Now it throws an InvalidOperationException.
304
305         * Npgsql/NpgsqlConnection.cs: Fixed Unicode handling. This also fixes bug 695 in gborg. Thanks Sami Kuhmonen <feenix@iqs.fi> for the patch.
306
307  
308 2004-02-16  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
309
310         * Npgsql/NpgsqlDataReader.cs: Removed a log line which reduced the conne
311 ction startup time in 300 milliseconds.
312
313 2004-02-16  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
314
315         * NpgsqlConnection.cs: Added support for Unicode encoding. Fixes feature
316 request 534 on gborg. Thanks Ivar <ivar@lumisoft.ee> for pointing it out.
317
318 2004-02-16 Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
319
320         * Npgsql/NpgsqlStartupPacket.cs: Added code to set datestyle to iso when
321 connecting using protocol 3.0 version. Thanks Sami Kuhmonen <feenix@iqs.fi> for pointing it out.
322
323 2004-02-14  Francisco Figueiredo Jr.  <fxjrlists@yahoo.com.br>
324
325         * Npgsql/NpgsqlCommand.cs: Fixed a bug when handling queries which return no data. Thanks Morten Mertner <morten@mertner.com> for the fix.
326
327 2004-02-10  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
328         
329         * NpgsqlTypes/NpgsqlTypesHelper.cs: Added support for datetime and time datatypes with timezone data. Thanks Sami Kuhmonen (sami@iqs.fi).
330
331 2004-01-15  Jackson Harper <jackson@ximian.com>
332
333         * NpgslTypes/NpgsqlTypesHelper.cs: Add StringFixedLength type.
334         
335 2003-11-23  Pedro Mart�ez Juli� <yoros@wanadoo.es>
336
337         * Npgsql/HashAlgorithm.cs:
338         * Npgsql/NpgsqlClosedState.cs:
339         * Npgsql/NpgsqlCommand.cs:
340         * Npgsql/NpgsqlConnectedState.cs:
341         * Npgsql/NpgsqlConnection.cs:
342         * Npgsql/NpgsqlReadyState.cs:
343         * Npgsql/NpgsqlStartupState.cs:
344         * Npgsql/NpgsqlState.cs: Apply Disposable pattern, when using
345         ADO.NET we need to call Dispose after using any Component like
346         NpgsqlDataAdapter, NpgsqlConnection, etc... Change a few internal
347         methods to Properties.
348
349 2003-11-22  Pedro Mart�ez Juli� <yoros@wanadoo.es>
350
351         * Npgsql/NpgsqlClosedState.cs:
352         * Npgsql/NpgsqlConnectedState.cs:
353         * Npgsql/NpgsqlConnection.cs:
354         * Npgsql/NpgsqlReadyState.cs:
355         * Npgsql/NpgsqlState.cs: Changes related to the last update of SSL
356         implementation. Now we're using TcpClient for the connection and
357         Stream for the abstraction layer to SslClientStream.
358
359 2003-11-11  Pedro Mart�ez Juli� <yoros@wanadoo.es>
360
361         * Npgsql/NpgsqlDataReader.cs: GetSchemaTable has nothing to do with
362         CanRead because the schema can be readed with or without result
363         rows.
364
365 2003-11-10  Pedro Mart�ez Juli� <yoros@wanadoo.es>
366
367         * Npgsql/NpgsqlDataAdapter.cs: Best use "if" instead of try-catch.
368
369 2003-11-10  Pedro Mart�ez Juli� <yoros@wanadoo.es>
370
371         * Npgsql/NpgsqlDataAdapter.cs: Catch the exception thrown by MS.NET
372         when a mapping is not in the collection.
373
374 2003-11-09  Pedro Mart�ez Juli� <yoros@wanadoo.es>
375
376         * Npgsql/NpgsqlDataAdapter.cs: Do not assing the result of the
377         CommandBuilder to the local data. Local data should be null if the
378         client doesn't set them.
379
380         * Npgsql/NpgsqlCommandBuilder.cs: Mistake in param name fixed.
381
382 2003-11-09  Pedro Mart�ez Juli� <yoros@wanadoo.es>
383
384         * Makefile: Little fix for build the resources.
385
386         * Npgsql/NpgsqlCommandBuilder.cs: Added row version in delete
387         command.
388
389 2003-11-08  Pedro Mart�ez Juli� <yoros@wanadoo.es>
390
391         * Npgsql/NpgsqlCommand.cs: Removed try-catch for Resource Manager
392         calls, the problem is fixed.
393
394         * Makefile: Fix one bug in the build of resources.
395
396 2003-11-08  Pedro Mart�ez Juli� <yoros@wanadoo.es>
397
398         * Npgsql/NpgsqlCommandBuilder.cs: Added the command builder.
399
400         * Npgsql/NpgsqlDataAdapter.cs: Added the CommandBuilder stuff. When
401         OnRowUpdating is called we create the command necesary for updating,
402         inserting or deleting any row of the DataTable/DataSet.
403
404         * Npgsql/NpgsqlCommand.cs: Temporary try-catch. ResMan still doesn't
405         work. This must be removed when ResMan works.
406
407         * Npgsql/NpgsqlParameter: No more than one call to value.GetType()
408         is more efficient for the deep if structure types.
409
410 2003-11-07  Pedro Mart�ez Juli� <yoros@wanadoo.es>
411
412         * Npgsql/NpgsqlDataAdapter.cs: Fixed the mistake I did in the last
413         change. The Command objects must not be created in the constructor.
414         The Commands should be in the overrided method "OnRowUpdating".
415
416         * Npgsql/NpgsqlCommand.cs: Added two try-catch instructions to get
417         the proper exception (not MissingManifestResourceException). It is
418         thrown in MS.NET and in MONO. (Npgsql compiled with MCS).
419
420 2003-11-07  Pedro Mart�ez Juli� <yoros@wanadoo.es>
421
422         * Npgsql/NpgsqlDataAdapter.cs: Create new Command classes for the
423         different Insrt / Update / Delete commands.
424
425 2003-10-20  Pedro Mart�ez Juli� <yoros@wanadoo.es>
426
427         * Npgsql/NpgsqlClosedState.cs:
428         * Npgsql/NpgsqlConnection.cs:
429         * Npgsql/NpgsqlConnectedState.cs:
430         * Npgsql/NpgsqlReadyState.cs:
431         * Npgsql/NpgsqlState.cs: Changed the namespace for Tls, now the
432         namespace is Mono.System.Protocol.Tls, before was
433         System.Security.Tls.
434
435         * Npgsql/Makefile: Change reference from System.Security.Tls to
436         Mono.Security (now Tls lives there).
437
438 2003-10-16  Pedro Mart�ez Juli� <yoros@wanadoo.es>
439
440         * Npgsql/NpgsqlClosedState.cs:
441         * Npgsql/NpgsqlConnectedState.cs:
442         * Npgsql/NpgsqlConnection.cs: Changed TcpClient by TlsSession
443         because now it is used TlsSession and it doesn't work without
444         these changes.
445
446 2003-10-16  Pedro Mart�ez Juli� <yoros@wanadoo.es>
447
448         * Makefile: changed reference from Lib/System.Security.Tls.dll to
449         System.Security.Tls because the last will be installed before and
450         separatelly.
451
452         * Lib: Removed Lib directory, moved System.Security.Tls.dll to
453         Mono.Security.Tls library directory.
454
455 2003-10-15  Pedro Mart�ez Juli� <yoros@wanadoo.es>
456
457         * Makefile: fix building and the install objectives.
458
459 2003-04-26  Pedro Mart�ez Juli� <yoros@wanadoo.es>
460
461         * Npgsql/NpgsqlDataReader.cs: Change GetFloat and GetDouble. Now
462         they works as direct casting from GetValue.
463
464 2003-07-18  Peter Williams  <peter@newton.cx>
465
466         * Npgsql/AssemblyInfo.cs: Don't strongname the assembly, because
467         we can't unless corlib is strongnamed too. Not a wonderful solution,
468         but I don't think this ever worked anyway.
469
470 2003-05-25  Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
471         * Npgsql/NpgsqlDataReader.cs: Fixed an invalid index exception when
472         processing 0 rows queries.
473
474 2003-04-26  Pedro Mart�ez Juli� <yoros@wanadoo.es>
475
476         * Npgsql/NpgsqlDataReader.cs: Now GetDateTime works for "dd/MM/yyyy"
477         date formats. I think that it's needed support to auto-detect
478         DateTime format through PgSql server configuration.
479
480 2003-01-28  Daniel Morgan <danmorg@sc.rr.com>
481
482         * Npgsql.build: got it to work for Windows build
483         
484         * Npgsql/Npgsql.build
485         * Npgsql/Npgsql.cmbx 
486         * Npgsql/Npgsql.prjx: removed files not needed
487
488 2003-01-28  Daniel Morgan <danmorg@sc.rr.com>
489
490         * added the Npgsql (Npgsql is a .Net Data Provider for PostgreSQL)
491           from http://gborg.postgresql.org/project/npgsql/projdisplay.php
492           by adding the following files and directories to the mcs module
493           in mono-cvs.ximian.com at mcs/class:
494       
495       Npgsql (directory)     
496       ChangeLog    
497       Makefile  
498       Npgsql.build  
499       RELEASENOTES.txt  
500       TODO.txt  
501       makefile.gnu
502       LICENSE.txt  
503       README.txt
504       STATUS.txt
505       list
506           Npgsql/Npgsql (directory)
507           Npgsql/AssemblyInfo.cs
508           Npgsql/NpgsqlAsciiRow.cs
509           Npgsql/NpgsqlBackEndKeyData.cs
510           Npgsql/NpgsqlClosedState.cs
511           Npgsql/NpgsqlCommand.cs
512           Npgsql/NpgsqlConnectedState.cs
513           Npgsql/NpgsqlConnection.cs
514           Npgsql/NpgsqlConnector.cs
515           Npgsql/NpgsqlConnectorPool.cs
516           Npgsql/NpgsqlDataAdapter.cs
517           Npgsql/NpgsqlDataReader.cs
518           Npgsql/NpgsqlEventLog.cs
519           Npgsql/NpgsqlException.cs
520           Npgsql/NpgsqlMediator.cs
521           Npgsql/NpgsqlMessageTypes.cs
522           Npgsql/NpgsqlParameter.cs
523           Npgsql/NpgsqlParameterCollection.cs
524           Npgsql/NpgsqlPasswordPacket.cs
525           Npgsql/NpgsqlQuery.cs
526           Npgsql/NpgsqlReadyState.cs
527           Npgsql/NpgsqlResultSet.cs
528           Npgsql/NpgsqlRowDescription.cs
529           Npgsql/NpgsqlStartupPacket.cs
530           Npgsql/NpgsqlStartupState.cs
531           Npgsql/NpgsqlState.cs
532           Npgsql/NpgsqlTransaction.cs
533           Npgsql/PGUtil.cs
534