ถามเรื่อง autocomplete ใน MSSQL หน่อยครับพี่ มัน ERROR ตัว where locate นะครับ
Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC SQL Server Driver][SQL Server]'locate' is not a recognized built-in function name., SQL state 37000 in SQLExecDirect in C:\AppServ\www\n6\data.php on line 10
Error Execute [select * from pd_inv where locate('', pd_nambill) > 0 order by locate('', pd_nambill), pd_nambill limit 50]
พยามยามหาใน GOOGLE แต่ก็ไม่เจอ อะครับ เฮอ!!!!!!!!!
<?
include("config_t/connect.php");
$cid = odbc_connect($connection_string,$user, $pass) or die ("?NotCONNECT");
$q = urldecode($_GET["q"]);
//$q= iconv('utf-8', 'tis-620', $_GET['test']);
$pagesize = 50; // จำนวนรายการที่ต้องการแสดง
$table_db="pd_inv"; // ตารางที่ต้องการค้นหา
$find_field="pd_nambill"; // ฟิลที่ต้องการค้นหา
$sql = "select * from $table_db where locate('$q', $find_field) > 0 order by locate('$q', $find_field), $find_field limit $pagesize";
$results = odbc_exec($cid, $sql) or die ("Error Execute [".$sql."]");
while ($row = odbc_fetch_array( $results )) {
$id = $row["pd_cod"]; // ฟิลที่ต้องการส่งค่ากลับ
$name =$row["pd_nambill"]; // ฟิลที่ต้องการแสดงค่า
// ป้องกันเครื่องหมาย '
$name = str_replace("'", "'", $name);
// กำหนดตัวหนาให้กับคำที่มีการพิมพ์
$display_name = preg_replace("/(" . $q . ")/i", "<b>$1</b>", $name);
echo "<li onselect=\"this.setText('$name').setValue('$id');\">$display_name</li>";
}
odbc_close($cid);
?>
Tag : PHP, Ms SQL Server 2008
Date :
2012-01-14 13:44:29
By :
time.toon
View :
1265
Reply :
1
คุณจะน่าจะต้องไปสร้าง function locate ใน Sql Server ก่อนน่ะครับ
Date :
2012-01-14 17:05:30
By :
webmaster
Load balance : Server 02