Error while sending QUERY packet

后端 未结 8 1995
情歌与酒
情歌与酒 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:04

    You guessed right MySQL have limitation for size of data, you need to break your query in small group of records or you can Change your max_allowed_packet by using SET GLOBAL max_allowed_packet=524288000;

提交回复
热议问题