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-07-29 08:20:04 +0400
committerFrancisco Figueiredo Jr. <fxjr@mono-cvs.ximian.com>2005-07-29 08:20:04 +0400
commit227221fcaa1bc92763a81047006247d6285087ce (patch)
tree7a22b6fefae72407ad4ef29b9ea73f2ca1c22eb1 /mcs/class/Npgsql/ChangeLog
parentd45e4da217b8b516d0656fb36f8e0fc20268f652 (diff)
2005-07-29 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
* NpgsqlCommand.cs: Fixed problem with query strings with newlines. Regexp used to parse parameters were removing new line bytes creating query strings with errors. Thanks Jaroslaw Kowalski (jaak at jkowalski dot net) for fix. svn path=/trunk/mcs/; revision=47826
Diffstat (limited to 'mcs/class/Npgsql/ChangeLog')
-rw-r--r--mcs/class/Npgsql/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/Npgsql/ChangeLog b/mcs/class/Npgsql/ChangeLog
index cb0b2ee68a1..c8aa90c7650 100644
--- a/mcs/class/Npgsql/ChangeLog
+++ b/mcs/class/Npgsql/ChangeLog
@@ -1,4 +1,10 @@
+
+2005-07-29 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
+
+ * NpgsqlCommand.cs: Fixed problem with query strings with newlines. Regexp used to parse parameters were removing new line bytes creating query strings with errors. Thanks Jaroslaw Kowalski (jaak at jkowalski dot net) for fix.
+
+
2005-07-19 Francisco Figueiredo Jr. <fxjrlists@yahoo.com.br>
* NpgsqlTypes/NpgsqlTypeConverters.cs: Gborg 1370. Fixed problems with Money type when using a culture which doesn't use dot as decimal separator. Also fixed problem where only Decimal types (i.e.: 7.4M) could be used as Money type values. Now Float values can be used too.