| 152 | */ |
| 153 | virtual int AddColumnToIndex(int tblHandle, int idxHandle, int colHandle); |
| 154 | virtual int AddColumnToIndex(const char* tblName, const char* idxName, const char* colName) |
| 155 | { |
| 156 | int tblHandle = this->GetTableHandleFromName(tblName); |
| 157 | return this->AddColumnToIndex(tblHandle, this->GetIndexHandleFromName(tblName, idxName), |
| 158 | this->GetColumnHandleFromName(tblName, colName)); |
| 159 | } |
| 160 | ///@} |
| 161 | |
| 162 | ///@{ |
nothing calls this directly
no test coverage detected