i
While working in FDMEE custom script , I am getting below error. Can anyone let me suggest on this.
selectStmt = "SELECT * FROM" + strLoc + "_" + strCat
TypeError: cannot concatenate 'str' and 'NoneType' objects
Below is my code:
selectStmt = "SELECT * FROM" + strLoc + "_" + strCat
stmt = sourceConn.prepareStatement(selectStmt)
RS = stmt.executeQuery()
while(RS.next()):