| 1059 | } |
| 1060 | |
| 1061 | FB_BOOLEAN isEof(CheckStatusWrapper* status) |
| 1062 | { |
| 1063 | try |
| 1064 | { |
| 1065 | return pb->isEof() ? FB_TRUE : FB_FALSE; |
| 1066 | } |
| 1067 | catch (const Exception& ex) |
| 1068 | { |
| 1069 | ex.stuffException(status); |
| 1070 | return FB_TRUE; |
| 1071 | } |
| 1072 | } |
| 1073 | |
| 1074 | void moveNext(CheckStatusWrapper* status) |
| 1075 | { |
no test coverage detected