Hello,
I'm copying data to the spreadsheet with the code below.
I'm getting a 360 execution time error.
How do you think a solution should be.
button code:
(tag names shown as numbers)
in this example it sent 300 records. then he gave an error.
What should I do for 10,000 records
I'm copying data to the spreadsheet with the code below.
I'm getting a 360 execution time error.
How do you think a solution should be.
button code:
while($record = $button->getNextSelectedRecord()) { $sql = ("INSERT INTO copy_1 (2, 3, 4, 5, 6, 7, 8, 9, 10,11) values ('".($record["2"])."','".($record["3"])."','".($record["4"])."','".($record["5"])."', '".($record["6"])."','".($record["7"])."','".($record["8"])."','".($record["9"])."','".($record["10"])."','".($record["11"])."') "); CustomQuery($sql); } $result["txt"] = $params["txt"]." GÖNDERİM BAŞARILI";
(tag names shown as numbers)
in this example it sent 300 records. then he gave an error.
What should I do for 10,000 records