| 4431 | } |
| 4432 | |
| 4433 | IMessageMetadata* YStatement::getOutputMetadata(CheckStatusWrapper* status) |
| 4434 | { |
| 4435 | try |
| 4436 | { |
| 4437 | YEntry<YStatement> entry(status, this); |
| 4438 | |
| 4439 | return output.get(entry.next(), this); |
| 4440 | } |
| 4441 | catch (const Exception& e) |
| 4442 | { |
| 4443 | e.stuffException(status); |
| 4444 | } |
| 4445 | |
| 4446 | return NULL; |
| 4447 | } |
| 4448 | |
| 4449 | ISC_UINT64 YStatement::getAffectedRecords(CheckStatusWrapper* status) |
| 4450 | { |
no test coverage detected