[Mono-bugs] [Bug 58480][Blo] New - Mono.Data.SqliteClient Transaction NullReferenceException

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 14 May 2004 01:39:39 -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 grompf@sublimeintervention.com.

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

--- shadow/58480	2004-05-14 01:39:39.000000000 -0400
+++ shadow/58480.tmp.1493	2004-05-14 01:39:39.000000000 -0400
@@ -0,0 +1,42 @@
+Bug#: 58480
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Blocker
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: grompf@sublimeintervention.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Mono.Data.SqliteClient Transaction NullReferenceException
+
+Please fill in this template when reporting a bug, unless you know what you are doing.
+Description of Problem:
+
+When running a series of SqliteCommands in a IDbTransaction, and IDbTransaction.Commit(); is 
+called, mono throws a null reference exception.
+
+Steps to reproduce the problem:
+1. Create a SqliteConnection 
+2. Create a SqliteCommand
+3. Create a IdbTransaction on the SqliteConnection (_conn.BeginTransaction);
+4. Execute a SqliteCommand.ExecuteNonQuery();
+5. Execute IdbTransaction.Commit();
+
+Actual Results:
+
+A NullReferenceException is thrown.
+
+Expected Results:
+
+The transacation should be committed.
+
+How often does this happen? 
+
+Every time.