i was trying to insert some data into the database but i got this error \"Error while sending QUERY packet\"
$insertDeta = $conPat->pre
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;
SET GLOBAL max_allowed_packet=524288000;