[Mono-bugs] [Bug 59603][Wis] New - out of memory error with npgsql and mono

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 4 Jun 2004 11:50:33 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by kiorky@goddess-gate.com.

http://bugzilla.ximian.com/show_bug.cgi?id=59603

--- shadow/59603	2004-06-04 11:50:33.000000000 -0400
+++ shadow/59603.tmp.29739	2004-06-04 11:50:33.000000000 -0400
@@ -0,0 +1,40 @@
+Bug#: 59603
+Product: Mono: Runtime
+Version: unspecified
+OS: 
+OS Details: debian sid
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: kiorky@goddess-gate.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: out of memory error with npgsql and mono
+
+debian sid
+kernel  2.4.26
+mcs 095
+mono 20040603
+gecko-sharp-0.4         gtksourceview-sharp-0.3         winelib-0.3
+gtk-sharp-0.93          libgdiplus-0.8                  wine20040505
+
+the base is postgresql and is not on the same machine 
+
+the code is :
+string srequet3=@"Server=126.10.0.1;Port=5432;User Id=Pasquet;Database=";
+srequet3+=@"Marrot;Password=kiorky";
+Npgsql.NpgsqlConnection toto = new Npgsql.NpgsqlConnection(srequet3);		
+Npgsql.NpgsqlCommand cmd = new Npgsql.NpgsqlCommand(srequet,toto);		
+Npgsql.NpgsqlDataAdapter DaAd = new Npgsql.NpgsqlDataAdapter(cmd);		
+DataSet Dsdset = new DataSet();								DaAd.Fill(Dsdset);							
+Dsdset.AcceptChanges();	
+
+
+
+the result; out of memory error
+-------