[PHP-DB] Iinserting into 250 tables filtered data automaticly. delaytime??

2001-12-29 Thread Andy
Hi guys, I would like to split a table of 2.3mill entries into 250 single ones. They contain countrycodes and I created automaticly 250 tables named after this codes. So far so good... No I would like to insert via php the data into the tables. The problem is, that the querry takes to much time

Re: [PHP-DB] Iinserting into 250 tables filtered data automaticly. delaytime??

2001-12-29 Thread Bogdan Stancescu
You actually have a time-out problem on exec_stmt(), because the for() can't loop without executing all of the statements within. You may want to start looking for ways to increase the time php waits for mysql to execute a query. Just to make sure I'm not senselessly babbling here, what does