|
From: Ricard <ri...@ga...> - 2004-12-30 08:19:52
|
Hello! After all, "obrigado" for this piece of software. I sent a patch to make it even better. http://sourceforge.net/tracker/index.php?func=detail&aid=1092088&group_id=114652&atid=669036 <http://sourceforge.net/tracker/index.php?func=detail&aid=1092088&group_id=114652&atid=669036> It solves a little problem with transactions. Regards. ------------------------------------------------------------------------ I think there's a bug in the AdpCommand constructor that prevents transactions to work properly. The constructor that works is : public AdpCommand(string cmdText, AdpConnection connection, AdpTransaction transaction) { this.Connection = connection; this.Transaction = transaction; this.CommandText = cmdText; } Note that I use "this.Connection" not "this.connection" and "this.Transaction" not "this.transaction" to initialize the variables properly. |