|
|
|
ขอสอบถามเกี่ยวกับ error sqlsrv_num_fields() expects parameter 1และsqlsrv_fetch_array() expects parameter 1 หน่อยครับ |
|
|
|
|
|
|
|
พอดีผมได้นำบทความ Auto filtextbox มาใช้กับ Ms sql แล้วเปลี่ยน syntax จากของ Mysqli เป็น sqlsrv แล้วเกิด error ทั้ง2ตัวนี้อะครับพี่ ผมต้องแก้ตรงไหนหรอครับพี่
อันนี้ไฟล์ return ครับ
Code (PHP)
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = ".\MSSQLSERVER200";
$userName = "sa";
$userPassword = "";
$dbName = "police";
$connectionInfo = array("Database"=>$dbName, "UID"=>$userName, "PWD"=>$userPassword, "MultipleActiveResultSets"=>true);
$conn = sqlsrv_connect( $serverName, $connectionInfo);
if( $conn === false ) {
die( print_r( sqlsrv_errors(), true));
}
$strSQL = "SELECT * FROM testAuto WHERE 1 AND cusId = '".$_POST["sCusID"]."' ";
$objQuery = sqlsrv_query($conn, $strSQL);
$intNumField = sqlsrv_num_fields($objQuery);
$resultArray = array();
while($obResult = sqlsrv_fetch_array($objQuery, SQLSRV_FETCH_ASSOC)){
$resultArray[]=$obResult;
}
//mysqli_close($objConnect);
echo json_encode($resultArray);
อันนี้หน้า html ครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#txtCustomerID").change(function(){
$.ajax({
url: "testre.php" ,
type: "POST",
data: 'sCusID=' +$("#txtCustomerID").val()
})
.success(function(result) {
var obj = jQuery.parseJSON(result);
if(obj == '')
{
$('input[type=text]').val('');
}
else
{
$.each(obj, function(key, inval) {
$("#txtCustomerID").val(inval["cusId"]);
$("#txtName").val(inval["names"]);
$("#txtEmail").val(inval["eMail"]);
$("#txtBudget").val(inval["budget"]);
});
}
});
});
});
</script>
</head>
<body>
<h2>jQuery Auto fill �֧�������ѵ��ѵ�</h2>
<table width="302" border="1">
<tr>
<td width="104">CustomerID</td>
<td width="153"><input type="text" id="txtCustomerID" name="txtCustomerID" size="5"></td>
</tr>
<tr>
<td>Name</td>
<td><input type="text" id="txtName" name="txtName" size="20"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="text" id="txtEmail" name="txtEmail" size="25"></td>
</tr>
<tr>
<td>Budget</td>
<td><input type="text" id="txtBudget" name="txtBudget" size="5"></td>
</tr>
</table>
</body>
</html>
Tag : PHP, Ms SQL Server 2012
|
|
|
|
|
|
Date :
2019-11-11 13:29:01 |
By :
erlnw001 |
View :
577 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
if( !($objQuery = sqlsrv_query($conn, $strSQL))){
print_r( sqlsrv_errors()); exit;
}
|
|
|
|
|
Date :
2019-11-11 13:37:40 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|