我正在尝试编写一个PHP代码,使用phpmyadmin在mySQL数据库中插入和更新值和行,现有行的更新工作正常,但插入不起作用。为了给你一些上下文,deviceID是主键,如果数据库中尚不存在deviceId,则应该执行INSERT。
我认为问题在于比较if语句是返回空集还是结果。如果提前感谢,将非常感谢帮助!
警告:
警告:mysqli_fetch_array()期望参数1为mysqli_result, 在C:\ wamp \ www \ android_connect \ update.php中给出的字符串 43 的
第43行是: $arr = mysqli_fetch_array($query);
这是php代码:
if ($_SERVER ["REQUEST_METHOD"]=="POST"){
require'connectiontest.php';
createStudent();
}
$response = array();
function createstudent()
{
// check for required fields
if (isset($_POST['deviceId']) && isset($_POST['buildingId']) &&
isset($_POST['levelId']) && isset($_POST['floorplanId']) &&
isset($_POST['latitude']) && isset($_POST['longitude'])
&& isset($_POST['x']) && isset($_POST['y']) && isset($_POST['i']) && i
sset($_POST['j']) && isset($_POST['heading'])
&& isset($_POST['probability']) && isset($_POST['roundtrip'])) {
// extract data from POST into variables
global $connect;
<?php
$deviceId = $_POST['deviceId'];
$buildingId = $_POST['buildingId'];
$levelId = $_POST['levelId'];
$floorplanId = $_POST['floorplanId'];
$latitude = $_POST['latitude'];
$longitude = $_POST['longitude'];
$x = $_POST['x'];
$y = $_POST['y'];
$i = $_POST['i'];
$j = $_POST['j'];
$heading = $_POST['heading'];
$probability = $_POST['probability'];
$roundtrip = $_POST['roundtrip'];
$query = "SELECT * FROM devicelocations WHERE deviceId = '$deviceId';";
$arr = mysqli_fetch_array($query);
if (sizeof($arr) == 1) {
error_log("Database is empty, doing an INSERT.", 0);
$query = "INSERT INTO devicelocations (deviceId, buildingId, levelId, floorplanId, latitude, longitude, x, y, i, j, heading, probability, roundtrip) VALUES ('$deviceId', '$buildingId', '$levelId', '$floorplanId', '$latitude', '$longitude', '$x', '$y', '$i', '$j', '$heading', '$probability', '$roundtrip');";}
else {
error_log("Database already has that deviceId, doing an UPDATE.", 0);
$query = "UPDATE devicelocations SET buildingId = '$buildingId', levelId = '$levelId', floorplanId = '$floorplanId', latitude = '$latitude', longitude = '$longitude', x = '$x', y = '$y', i = '$i', j = '$j', heading = '$heading', probability = '$probability', roundtrip = '$roundtrip' WHERE deviceId = '$deviceId';";}
mysqli_query($connect, $query) or die (mysqli_error($connect));
mysqli_close($connect);
// check if row inserted or not
if ($query) {
// successfully inserted into database
$response["success"] = 1;
$response["message"] = "Entry successfully inserted or updated.";
// echoing JSON response
echo json_encode($response);
} else {
// failed to insert row
$response["success"] = 0;
$response["message"] = "Entry was not successfully inserted or updated.";
// echoing JSON response
echo json_encode($response);
}
} else {
// required field is missing
$response["success"] = 0;
$response["message"] = "Required field(s) is missing";
// echoing JSON response
echo json_encode($response);
}
}
?>
答案 0 :(得分:1)
使用
$count=mysqli_num_rows($your_query);
if($count>0){
update query
}
else
{
insert query
}
答案 1 :(得分:0)
在确定与数据库的连接之前,您甚至没有执行查询。
$query = "SELECT * FROM devicelocations WHERE deviceId = '$deviceId';";
$result=mysqli_query($con,$query);//executing query
$arr = mysqli_fetch_array($result);
$con=mysqli_connect(ip,"username","password",database)
是与数据库的连接
答案 2 :(得分:0)
解决了这个问题:
$result=mysqli_query($connect,$query);
$count=mysqli_num_rows($result);
if($count>0) {
update query } else{
insert query }