PHP
le righe interessate da php mysqli restituiscono 0 quando dovrebbe restituire un intero positivo
Ricerca…
introduzione
Questo script è progettato per gestire i dispositivi di reporting (IoT), quando un dispositivo non è autorizzato in precedenza (nella tabella dei dispositivi nel database), aggiungo il nuovo dispositivo a una tabella new_devices. Eseguo una query di aggiornamento e se affected_rows restituisce <1, inserisco.
Quando ho un nuovo rapporto dispositivo, la prima volta che viene eseguito $ stmt-> affected_rows restituisce 0, la comunicazione successiva restituisce 1, quindi 1, 0, 2, 2, 0, 3, 3, 3, 3, 3, 3 , 0, 4, 0, 0, 6, 6, 6, ecc
È come se la dichiarazione di aggiornamento fallisse. Perché?
PHP $ stmt-> affected_rows restituisce 0 in modo intermittente quando dovrebbe restituire un intero positivo
<?php
// if device exists, update timestamp
$stmt = $mysqli->prepare("UPDATE new_devices SET nd_timestamp=? WHERE nd_deviceid=?");
$stmt->bind_param('ss', $now, $device);
$stmt->execute();
//echo "Affected Rows: ".$stmt->affected_rows; // This line is where I am checking the status of the update query.
if ($stmt->affected_rows < 1){ // Because affected_rows sometimes returns 0, the insert code runs instead of being skipped. Now I have many duplicate entries.
$ins = $mysqli->prepare("INSERT INTO new_devices (nd_id,nd_deviceid,nd_timestamp) VALUES (nd_id,?,?)");
$ins -> bind_param("ss",$device,$now);
$ins -> execute();
$ins -> store_result();
$ins -> free_result();
}
?>
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow