Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancisco Figueiredo Jr. <fxjr@mono-cvs.ximian.com>2005-02-08 22:06:00 +0300
committerFrancisco Figueiredo Jr. <fxjr@mono-cvs.ximian.com>2005-02-08 22:06:00 +0300
commit469a0a2382b6ea5c8f56f68e2e040a1ca2d45ff1 (patch)
treee550ccc0a99a25fc5383216061bca51771cf5c93 /mcs/class/Npgsql/ChangeLog
parent2838ffc2a1d2ea9509b44de43e4a21bae167a709 (diff)
2005-02-08 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
* NpgsqlTypes/NpgsqlTypesHelper.cs: Fixed float precision rounding. Now all float values are sent with 15 precision scale. * Npgsql/NpgsqlCommand.cs: Fixed problem when setting a new connection and a running transaction existed. Now, the transaction can be removed and later the connection can be replaced. Thanks Mike Griffin (mike.griffin at mygenerationsoftware dot com) for heads up. 2005-02-06 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br> * NpgsqlTypes/NpgsqlTypeConverters.cs: Fixed datetime precision when sending values to backend. It was sending just the first 3 decimal values of time. Now it sends all the 6 digits. Thanks Martin Susil (spam at susil dot net) for heads up. 2005-01-29 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br> * Npgsql/NpgsqlCommand.cs: Added support for updating output parameters when calling executereader(). Thanks Mike Griffin (mike dot griffin at mygenerationsoftware dot com) for heads up. Fixed internal constructor to initialize Parameters collection and timeout. svn path=/trunk/mcs/; revision=40316
Diffstat (limited to 'mcs/class/Npgsql/ChangeLog')
-rw-r--r--mcs/class/Npgsql/ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/mcs/class/Npgsql/ChangeLog b/mcs/class/Npgsql/ChangeLog
index 4d886318669..62c87ae7332 100644
--- a/mcs/class/Npgsql/ChangeLog
+++ b/mcs/class/Npgsql/ChangeLog
@@ -1,3 +1,19 @@
+
+2005-02-08 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
+
+ * NpgsqlTypes/NpgsqlTypesHelper.cs: Fixed float precision rounding. Now all float values are sent with 15 precision scale.
+ * Npgsql/NpgsqlCommand.cs: Fixed problem when setting a new connection and a running transaction existed. Now, the transaction can be removed and later the connection can be replaced. Thanks Mike Griffin (mike.griffin at mygenerationsoftware dot com) for heads up.
+
+2005-02-06 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
+
+ * NpgsqlTypes/NpgsqlTypeConverters.cs: Fixed datetime precision when sending values to backend. It was sending just the first 3 decimal values of time. Now it sends all the 6 digits. Thanks Martin Susil (spam at susil dot net) for heads up.
+
+2005-01-29 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
+
+ * Npgsql/NpgsqlCommand.cs: Added support for updating output parameters when calling executereader().
+ Thanks Mike Griffin (mike dot griffin at mygenerationsoftware dot com) for heads up.
+ Fixed internal constructor to initialize Parameters collection and timeout.
+
2005-01-27 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
* Npgsql/NpgsqlParameter.cs,