You're missing the problem completely

Mark
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
and that's perfectly in line with the original question. What do you think you misinterpreted?It all works but can I put the changes in 1 line and just use revExecuteSQL once?
Code: Select all
REPLACE INTO table VALUES ('id1','val1','val2',...) VALUES ('id2','val1','val2',...) VALUES ('id3','val1','val2',...) ....
Code: Select all
REPLACE INTO tTableName VALUES ('gID','first_name','last_name',...)
Code: Select all
REPLACE INTO tTableName (gID,first_name,last_name,mobile_number) VALUES ('1','tFirstName','tLastName','tMob) VALUES ('2','tFirstName','tLastName','tMob)...