|
From: Everaldo C. <eve...@ya...> - 2004-12-30 09:46:41
|
Olá Ricard, Thanks for your patch, I will include it today :) For the next days I have plan to release a new version with a lot of new resources. Wait and you will see :) If you have any problem with ADP feel free to contact me, I like to see your experience with ADP. Thanks, Everaldo. Em Qui, 2004-12-30 às 09:19 +0100, Ricard escreveu: > 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 > > 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. > > > |