I am updating a datawindow with the Update function, which returns 1 to say it is successful, but then the SQLNRows is coming back as 0. When I do this for the first time on my screen, it works, with 1 successful and SQLNRows 1, but when I do a second update on the same screen without closing it inbetween i get 1 successful and SQLNRows 0. Any suggestions why this would be?
|
|
Your question seems to hit a couple of things. Firstly, as John Paul mentions, Update() will return 1 even if there are no rows updated. There is no specific return value for "nothing to be done." Secondly, as mentioned in the help file, the value for SQLNRows is DBMS-dependent, so it's hard to comment on the value being filled in there without knowing the DBMS involved. However, regardless of that, since the DataWindow issues a series of INSERTs, UPDATEs and DELETEs that are targeted at only one row, if this value is populated I wouldn't expect it would ever be more than one, no matter how many SQL statements the DataWindow issues. The number of rows affected for the last SQL statement issued should always be one. If you're trying to find the number of rows affected by a DataWindow Update(), before the Update(), check the value of ModifiedCount() + DeletedCount(). Good luck, Terry. |
||
|
|
|
|
It's been a long time since I've used PB, but isn't the .Update()'s return value simply an indicator of the command (i.e. UPDATE) being successfully performed by the DB? If this is correct then it'll return 1, when successful, even if row values are not actually changing. SqlNRows is the actual indicator of the number of changed rows. |
||
|
|
