Re: [PHP] very strange behavior.... incomplete query performed

2007-08-14 Thread Chris
Alain Roger wrote: There was no error message...hust after few secunds it stop as normaly it should do... but i add -> set_time_limit(0); and it works. adding around 20.000 records to database takes some time :-) around 1:41 minutes. I was thinking that i could be faster... :-( After doing yo

Re: [PHP] very strange behavior.... incomplete query performed

2007-08-14 Thread Alain Roger
There was no error message...hust after few secunds it stop as normaly it should do... but i add -> set_time_limit(0); and it works. adding around 20.000 records to database takes some time :-) around 1:41 minutes. I was thinking that i could be faster... :-( Alain On 8/13/07, Richard Lynch <[E

Re: [PHP] very strange behavior.... incomplete query performed

2007-08-13 Thread Richard Lynch
Are you using E_ALL? Any error messages? My first suspect is you are hitting php.ini time_limit setting, or possibly the memory_limit. On Sun, August 12, 2007 7:09 am, Alain Roger wrote: > Hi, > > I'm still working on importing CSV file content (20.000 records) to > database > PostgreSQL. > > wh

Re: [PHP] very strange behavior.... incomplete query performed

2007-08-12 Thread Stut
Tijnema wrote: On 8/12/07, Alain Roger <[EMAIL PROTECTED]> wrote: Hi, I'm still working on importing CSV file content (20.000 records) to database PostgreSQL. when i run the query, once i stored into my table 5218 records, another time 5231 another time 4713 and so on every time the amoun

Re: [PHP] very strange behavior.... incomplete query performed

2007-08-12 Thread Tijnema
On 8/12/07, Alain Roger <[EMAIL PROTECTED]> wrote: > Hi, > > I'm still working on importing CSV file content (20.000 records) to database > PostgreSQL. > > when i run the query, once i stored into my table 5218 records, another > time 5231 another time 4713 and so on > every time the amount of

[PHP] very strange behavior.... incomplete query performed

2007-08-12 Thread Alain Roger
Hi, I'm still working on importing CSV file content (20.000 records) to database PostgreSQL. when i run the query, once i stored into my table 5218 records, another time 5231 another time 4713 and so on every time the amount of records imported to DB is different. Do you have any idea from