|
|
|
แสดงเอาท์พุท จำนวนข้อมูล num Row ยังไงดีครับผลได้แล้วแต่งงกับวิธีที่เหมาะสม |
|
|
|
|
|
|
|
ลองแบบนี้หรือยังครับ
Code (PHP)
<?php
<?php
$connstr = "Driver={SQL Server};Server=SERVERNAME;Database=DBNAME;";
$conn = odbc_connect($connstr, "usr", "pwd");
$queryresult = odbc_exec($conn, "select * from table");
echo "Show " . odbc_num_rows($queryresult) . " rows."
?>
|
|
|
|
|
Date :
2012-01-10 16:14:07 |
By :
JavaScrap |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขึ้นเป็น -1 ครับ
ไม่ได้จำนวนตามจริงอ่ะครับ
|
|
|
|
|
Date :
2012-01-10 16:18:25 |
By :
anue0159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ของเก่าคุณตรง
Code (PHP)
$cid = odbc_connect($connection_string ,$user, $pass);
เป็น
$cid = odbc_connect($connection_string ,$user, $pass, SQL_CUR_USE_IF_NEEDED);
และเพิ่มต่อท้าย $result = odbc_exec($cid,$query);
$num_rows = odbc_num_rows($result); //จำนวนแถวที่ได้
Loop While ก็ไม่ต้องใช้แล้วครับ
|
ประวัติการแก้ไข 2012-01-10 17:02:55 2012-01-10 17:03:41
|
|
|
|
Date :
2012-01-10 17:00:12 |
By :
amuropao08 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|