我正在使用AJAX使用Php从MSSQL Server 2017中检索数据并在文本框中显示这些值。一个MSSQL查询正在提供,而其他则没有。
在 data.php 中,当$stmt
等于SELECT rmtype FROM rmmaster
时,数据正在加载到 AJAX.php 中的文本框中,但是当{{1} }等于$stmt
,没有值。但是,如果在sql managment studio中运行两个查询,则两个查询都可以正常工作并有结果。
连接中没有错误,仅此一种有效,而另一种无效。
这是AJAX.php
SELECT * FROM rmmaster where rmnumber='102'
这是DATA.php
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<button type="button" id="element" class="element">Button</button>
<input type="text" class="form-control" id="usr">
</div>
</body>
<script type="application/javascript">
$('#element').on('click', function(e){
$.ajax({
url: 'data.php',
type: 'GET',
success: function(data){
alert(data);
$('#usr').val(data);
}
});
});
</script>
</html>
home.php是到sql服务器的数据连接,该文件中没有错误。
答案 0 :(得分:3)
您的代码总是读取第一个结果行,然后对其不执行任何操作,基本上将其忽略。
此If从结果集中读取第一行
if( $stmt->fetch() === false) {
die( print_r( sqlsrv_errors(), true));
}
因此,请删除该IF,当您仅选择一行时它将起作用,并且当您选择多行时也会返回所有行
include_once ('home.php');
if( $conn === false ) {
die( print_r( sqlsrv_errors(), true));
}
$name="102";
$stmt = $conn->query("SELECT * FROM rmmaster where rmnumber='$name'"); // this is not giving results
//$stmt = $conn->query("SELECT rmtype FROM rmmaster"); // this is giving answers
if( $stmt === false ) {
die( print_r( sqlsrv_errors(), true));
}
/*
if( $stmt->fetch() === false) {
die( print_r( sqlsrv_errors(), true));
}
*/
while ($row = $stmt->fetch()){
echo ($row['rmtype'].$name);
}