From: | 李彦 Ian Li <liyan82(at)gmail(dot)com> |
---|---|
To: | pgsql-php(at)postgresql(dot)org |
Subject: | [newbie] How to do "batch insert"? |
Date: | 2007-06-08 08:44:10 |
Message-ID: | 466916DA.2080903@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-php |
Hi all.
In the scene I want to insert all elements of an array in to a
table, how can I do to commit them as a whole?
currently I do like this:
<?php
$result = pg_prepare($dbconn, "ins_acl", 'INSERT INTO
acls(oid,uid,gid,mod) VALUES($1,$2,$3,$4)');
for($i=0;$i<count($p["acls"]);$i++){
pg_execute($dbconn, "ins_lgs",$p["acls"][i]);
}
?>
I wonder while doing so, will it commit in each LOOP or just ONCE?
Thanks and Regards,
Ian
From | Date | Subject | |
---|---|---|---|
Next Message | Mihail Mihailov | 2007-06-08 10:34:40 | Re: [newbie] How to do "batch insert"? |
Previous Message | Chris | 2007-05-29 00:18:55 | Re: Get Extension in Bytea Type |