IConfig implementation
| 158 | |
| 159 | // IConfig implementation |
| 160 | IConfigEntry* find(CheckStatusWrapper* status, const char* name) |
| 161 | { |
| 162 | try |
| 163 | { |
| 164 | return confFile.hasData() ? newParam(confFile->findParameter(name)) : NULL; |
| 165 | } |
| 166 | catch (const Firebird::Exception& ex) |
| 167 | { |
| 168 | ex.stuffException(status); |
| 169 | } |
| 170 | return NULL; |
| 171 | } |
| 172 | |
| 173 | IConfigEntry* findValue(CheckStatusWrapper* status, const char* name, const char* value) |
| 174 | { |
no test coverage detected