| 169 | virtual int AddTriggerToTable(int tblHandle, int trgType, const char* trgName, |
| 170 | const char* trgAction, const char* trgBackend = VTK_SQL_ALLBACKENDS); |
| 171 | virtual int AddTriggerToTable(const char* tblName, int trgType, const char* trgName, |
| 172 | const char* trgAction, const char* trgBackend = VTK_SQL_ALLBACKENDS) |
| 173 | { |
| 174 | return this->AddTriggerToTable( |
| 175 | this->GetTableHandleFromName(tblName), trgType, trgName, trgAction, trgBackend); |
| 176 | } |
| 177 | ///@} |
| 178 | |
| 179 | ///@{ |
nothing calls this directly
no test coverage detected