|
|
|
ช่วยดูโค๊ด PHP เพื่อ Select ข้อมูลบน DB2 express-c ทีคับ ขอคำแนะนำหน่อยคับ |
|
|
|
|
|
|
|
Code (Example)
<?php
$animals = array(
array(0, 'cat', 'Pook', 3.2),
array(1, 'dog', 'Peaches', 12.3),
array(2, 'horse', 'Smarty', 350.0),
);
$insert = 'INSERT INTO animals (id, breed, name, weight)
VALUES (?, ?, ?, ?)';
$stmt = db2_prepare($conn, $insert);
if ($stmt) {
foreach ($animals as $animal) {
$result = db2_execute($stmt, $animal);
}
}
?>
|
|
|
|
|
Date :
2015-06-09 10:21:04 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|