| 139 | */ |
| 140 | virtual int AddIndexToTable(int tblHandle, int idxType, const char* idxName); |
| 141 | virtual int AddIndexToTable(const char* tblName, int idxType, const char* idxName) |
| 142 | { |
| 143 | return this->AddIndexToTable(this->GetTableHandleFromName(tblName), idxType, idxName); |
| 144 | } |
| 145 | ///@} |
| 146 | |
| 147 | ///@{ |
nothing calls this directly
no test coverage detected