(self, tblName, tblField, tblType)
| 108 | self.execCmd(cmd, silent=True) |
| 109 | |
| 110 | def createSupportTbl(self, tblName, tblField, tblType): |
| 111 | inject.goStacked("DROP TABLE %s" % tblName, silent=True) |
| 112 | |
| 113 | if Backend.isDbms(DBMS.MSSQL) and tblName == self.cmdTblName: |
| 114 | inject.goStacked("CREATE TABLE %s(id INT PRIMARY KEY IDENTITY, %s %s)" % (tblName, tblField, tblType)) |
| 115 | else: |
| 116 | inject.goStacked("CREATE TABLE %s(%s %s)" % (tblName, tblField, tblType)) |
| 117 | |
| 118 | def cleanup(self, onlyFileTbl=False, udfDict=None, web=False): |
| 119 | """ |
no test coverage detected