What size of a large query ? I need to make a function
to send query to the server but I can not exceed the limit to not crash the server:
public function sqlExecute($sql_code) {
if ($sql_code != "" && strlen($sql_code) < 1e6) { // O TAMANHO DA QUERY AQUI
echo '1';
}
else {
echo '2';
}
}