Jump to content

Recommended Posts

Posted

My PHP script for mysqli queries works most of the time, but while running a loop that queries database many times, occasionally I'll get Warning:

PHP Warning:  mysqli_stmt::execute(): (HY000/2013): Lost connection to MySQL server during query in... blah blah blah

Can someone tell me if I need to modify the structure of my queries to make it work better?  Here's my example:

 

 

<?php

 

$host = "localhost";
$username = "blah_blah";
$password = "blah_blah";
$database = "blah_blah";

$mysqli = new mysqli($host, $username, $password, $database,0,'/var/lib/mysql/mysql.sock'); 
$mysqli->set_charset('utf8');

 

if ($stmt = $mysqli->prepare("SELECT column_A FROM table_X WHERE column_B=? AND column_C=? LIMIT 1")){
 $stmt->bind_param("si", $value_1, $value_2);
 $stmt->execute();
 $stmt->bind_result($column_A_value);
 $stmt->fetch();
 $stmt->close();
}

 

?>

  • 4 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...