gpt4 book ai didi

php - 在 Dreamweaver 上创建的基本 mysql 查询不起作用

转载 作者:行者123 更新时间:2023-11-30 01:11:32 25 4
gpt4 key购买 nike

我使用 Dreamweaver 创建了一个基本的 mysql 查询(我的 php 和 mysql 知识非常有限):

这是代码:

<?php require_once('../Connections/ahbvc.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

mysql_select_db($database_ahbvc, $ahbvc);
$query_Recordset1 = "SELECT saida, DataRegisto, VIATURA, KMSAIDA, codigo, MORADA, OpServiço FROM registo WHERE HORAENTRADA IS NULL ORDER BY saida";
$Recordset1 = mysql_query($query_Recordset1, $ahbvc) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>

<body>
<?php do { ?>
<?php echo $row_Recordset1['']; ?>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>

但是当我尝试加载页面时出现此错误:

您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,了解在第 1 行“§o FROM registo WHERE HORAENTRADA IS NULL ORDER BY saida”附近使用的正确语法

有人可以帮我吗?我已经搜索了每一段代码,但找不到错误。

谢谢!

最佳答案

你的问题是

“运营服务”

表中的字段名称,您可以尝试使用反引号`OpServiço`来转义表名称,但一般建议仅使用小写字符abcdefghijklmnopqrstuvxyz和下划线_数据库、表和字段名称

关于php - 在 Dreamweaver 上创建的基本 mysql 查询不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19437264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com