| 124 | virtual int AddColumnToTable( |
| 125 | int tblHandle, int colType, const char* colName, int colSize, const char* colOpts); |
| 126 | virtual int AddColumnToTable( |
| 127 | const char* tblName, int colType, const char* colName, int colSize, const char* colAttribs) |
| 128 | { |
| 129 | return this->AddColumnToTable( |
| 130 | this->GetTableHandleFromName(tblName), colType, colName, colSize, colAttribs); |
| 131 | } |
| 132 | ///@} |
| 133 | |
| 134 | ///@{ |
nothing calls this directly
no test coverage detected