Loop mysql dizi değerleri için PHP eklemek yerine - dizi uzunluğu 100 000 satır eklemek

0 Cevap php

The question should be clear, but I'll explain once more: I'm trying to insert the individual values from an array in a mysql database.

İşte kod:

public function addRoute($pointArray){

    $length = 4; //just to be sure that nothing went wrong with calulating the length

    for($i = 0; $i < $length; $i++){

        $result = "INSERT into route_point(latlng, routeID) VALUES (4849, 10)"; //sample values, to once again be sure that there is nothing wrong with the values
        mysql_query($result);
    }

    mysql_close(); //just to be sure again
    return true;
}

PointArray herkes merak eğer ZendAMF çerçevesini kullanarak Actioncript geçirilir ediliyor. Benim gözümde hiçbir şey deyimi yanlış olduğunu, bunun yerine 4 satır ekleme, bu .. Ben de php fonksiyonu çalıştırıldığında geçti gereken, geri actionscript "gerçek" almıyorsunuz 100'den fazla 000 satır ekler .

Ben de her döngü için çalıştı, ama (ben Actioncript gelen php dosyasını arıyorum beri ben okuyamıyorum) bir hata alıyorum.

foreach ($pointArray as $value) {

        $result = "INSERT into route_point(latlng, routeID) VALUES ('$value', 10)";
        mysql_query($result);

    }

Ama döngü için bir kullanmayı tercih.

Bu kesinlikle clueless, şimdi birkaç saat için çeşitli ayarları ile oynadım.

0 Cevap