Return a copy of the column data specified by its index starting at 0 (use the Column copy-constructor)
| 227 | // Return a copy of the column data specified by its index starting at 0 |
| 228 | // (use the Column copy-constructor) |
| 229 | Column Statement::getColumn(const int aIndex) const |
| 230 | { |
| 231 | checkRow(); |
| 232 | checkIndex(aIndex); |
| 233 | |
| 234 | // Share the Statement Object handle with the new Column created |
| 235 | return Column(mpPreparedStatement, aIndex); |
| 236 | } |
| 237 | |
| 238 | // Return a copy of the column data specified by its column name starting at 0 |
| 239 | // (use the Column copy-constructor) |
no test coverage detected