สอบถาม พี่ ๆ เกี่ยวกับการ Connect Progress Database Syteline ครับตอนนี้ทดสอบคือ PG_Connect และ ODBC Connect ก็ไม่ได้ครับ
PG_Connect ครับ
Code (PHP)
<?php
$conn_string = "host=11.111.111.1 port=5000 dbname=bbb user= password= ";
$connection = pg_connect($conn_string) or die("connection failed");
$query = "select * from item";
$result = pg_query($query);
if (!$result) {
echo "Problem with query " . $query . "<br/>";
echo pg_last_error();
exit();
}
header('Expires: 0');
header('Cache-control: private');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Description: File Transfer');
header('Content-Type: text/plain');
header('Content-disposition: attachment; filename="data.txt"');
while ($row = pg_fetch_assoc($result)) {
print($row['item'] . "," . trim($row['item']) . "," . trim($row['description']) . "\n");
}
?>
ที่ทำไปแล้วคือ
php.ini
uncommented, extension=php_pdo_pgsql.dll,
uncommented, extension=php_pgsql.dll,
uncommented, extension_dir = "C:\AppServ\php5\ext",
ใน C:\AppServ\php5\ext มี php_pgsql.dll
และใน
C:\Windows\System32\ มี libpq.dll
ตอนนี้งงมากครับ ทดลองมาหลาย ๆ Code แล้วก็ไม่สำเร็จ พี่ ๆ ช่วยด้วยครับTag : PHP, Windows
ประวัติการแก้ไข 2014-01-29 07:56:01 2014-01-29 07:56:29
Date :
2014-01-29 07:56:03
By :
TotEcom
View :
1737
Reply :
4
ตอนนี้มัน Error อะไรครับ อันที่จริงผมก็ Config อยู่แค่นั้นน่ะครับ
Date :
2014-01-29 09:03:53
By :
mr.win
Error แบบนี้ครับ
ใน Error.log แจ้ง Error ด้านล่างครับ
PHP Warning: PHP Startup: Unable to load dynamic library 'C:/AppServ\\php5\\ext\\php_exif.dll' - The specified module could not be found.\r\n in Unknown on line 0
รบกวนพี่ ๆ ช่วยทีครับ
Date :
2014-01-29 09:22:02
By :
TotEcom
ให้แก้การเรียงลำดับโดยให้ Load module php_mbstring.dll อยู่ก่อน php_exif.dll
Date :
2014-01-29 09:33:09
By :
mr.win
ผมต้อง set ตรงไหนครับ
ประวัติการแก้ไข 2014-01-31 15:06:37 2014-02-04 08:05:45 2014-02-04 14:52:08
Date :
2014-01-31 15:05:54
By :
TotEcom
Load balance : Server 05