| 281 | } |
| 282 | |
| 283 | const char* SQLDAMetadata::getOwner(CheckStatusWrapper* status, unsigned index) |
| 284 | { |
| 285 | if (sqlda) |
| 286 | { |
| 287 | fb_assert(sqlda->sqld > (int) index); |
| 288 | return sqlda->sqlvar[index].ownname; |
| 289 | } |
| 290 | |
| 291 | return ""; |
| 292 | } |
| 293 | |
| 294 | const char* SQLDAMetadata::getAlias(CheckStatusWrapper* status, unsigned index) |
| 295 | { |
no outgoing calls
no test coverage detected