diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2023-03-11 18:15:37 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2023-03-11 18:15:37 +0100 |
commit | dd70ff8bf32c2d7ed365004b1770058265db1978 (patch) | |
tree | 084788d142d86c4dc38f5c48606523b4040596e6 /src/examples/xb_ex_v4_upd_dbf.cpp | |
parent | 517ad9d4b6eae320b708d03a9340a22893b0cab7 (diff) |
New upstream version 4.1.0upstream/4.1.0
Diffstat (limited to 'src/examples/xb_ex_v4_upd_dbf.cpp')
-rwxr-xr-x | src/examples/xb_ex_v4_upd_dbf.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/examples/xb_ex_v4_upd_dbf.cpp b/src/examples/xb_ex_v4_upd_dbf.cpp index 96b6bdf..75d0641 100755 --- a/src/examples/xb_ex_v4_upd_dbf.cpp +++ b/src/examples/xb_ex_v4_upd_dbf.cpp @@ -258,15 +258,15 @@ int main() throw iRc; } - // example code to loop through the table - for( xbUInt32 ulTuple = 1; ulTuple <= MyTable->GetRecordCount(); ulTuple++ ){ - if(( iRc = MyTable->GetRecord( ulTuple ) != XB_NO_ERROR )){ + for( xbUInt32 ul = 1; ul <= MyTable->GetRecordCount(); ul++ ){ + if(( iRc = MyTable->GetRecord( ul )) != XB_NO_ERROR ){ iErrorStop = 430; throw iRc; } // do something with the record here std::cout << "Tuple = " << MyTable->GetCurRecNo() << std::endl; + } /* Close database and associated indexes */ |