Pro* C 에서 쿼리문에 영향을 받은 row수를 얻는방법

Rows-Processed Count

The number of rows processed by the most recently executed SQL statement is
returned in the SQLCA variable sqlca.sqlerrd[2], which you can check
explicitly.
Strictly speaking, this variable is not for error reporting, but it can help you avoid
mistakes. For example, suppose you expect to delete about ten rows from a table.
After the deletion, you check sqlca.sqlerrd[2] and find that 75 rows were
processed. To be safe, you might want to roll back the deletion and examine your
WHERE-clause search condition.

결론은 sqlca.sqlerrd[2]
쩝… Pro C 책을 한권 사던지 해야지 이런 간단한 내용 찾는데 어버버버 하면서 시간을 너무 낭비하는군.

“Pro* C 에서 쿼리문에 영향을 받은 row수를 얻는방법”에 대한 3개의 댓글

댓글 남기기

이메일은 공개되지 않습니다. 필수 입력창은 * 로 표시되어 있습니다