Error while sending QUERY packet

后端 未结 8 1990
情歌与酒
情歌与酒 2020-11-27 04:42

i was trying to insert some data into the database but i got this error \"Error while sending QUERY packet\"

$insertDeta = $conPat->pre         


        
8条回答
  •  [愿得一人]
    2020-11-27 05:14

    You may also have this error if the variable wait_timeout is too low.

    If so, you may set it higher like that:

    SET GLOBAL wait_timeout=10;
    

    This was the solution for the same error in my case.

提交回复
热议问题