Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
context.tableNonExsit=true;
String tableName="s5";
String currentTableName= ((String)globalMap.get("tMysqlTableList_1_CURRENT_TABLE"));
if(tableName.equals(currentTableName)){
context.tableNonExsit=false;
break;
}
"create table s5(ID int(11) unique auto_increment,
TITLE varchar(255),
DESCRIPTION varchar(255),
PUBDATE varchar(255),
LINK varchar(255))"
When ever I define a context variable and try to use it from tJava component I got an error message saying this variable doesn't exist.