Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I use this SQL query:

$myquery = mysql_query(" create table q_mem_sur as SELECT Count(*) As rowa,
        member.Ssurname,
        Sum(Case When ((member.status = '1')) Then 1 Else 0 End) As Status11
    From member
    Group By member.Ssurname
    Order By rowa Desc");

in the MySQL GUI tool, it works but when run it with PHP it gives a warning:

Warning: mysql_query() [function.mysql-query]: MySQL server has gone away in C:\wamp\www\mayor_T\prepare.php on line 78

I tried changing the config in php.ini but what is the key word that I should change?

This is the code I test all sql statements it can run

<?php
session_start(); // Initialize Session data
ob_start(); // Turn on output buffering
?>
<?php include "ewcfg7.php" ?>
<?php include "ewmysql7.php" ?>
<?php include "phpfn7.php" ?>
<?php include "ageyearinfo.php" ?>
<?php 



$con = mysql_connect(EW_CONN_HOST,EW_CONN_USER,EW_CONN_PASS);
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_set_charset('utf8',$con);
$charset = mysql_client_encoding($con);

$db_selected = mysql_select_db(EW_CONN_DB, $con);
if (!$db_selected) {
    die ('Can\'t use foo : ' . mysql_error());
}

echo "connect database and use The current character set is: $charset\n";


$myquery = mysql_query("UPDATE `member` SET `amphurecode`= SUBSTRING(member.own,3,4)");
if (!$myquery)
  {
  die('can not update amphurecode ' . mysql_error());
  }

$myquery = mysql_query("UPDATE `member` SET `provincecode`= SUBSTRING(member.own,3,2)");
if (!$myquery)
  {
  die('can not update province code ' . mysql_error());
  }


echo "update amporecode and province\n";

$dropT = mysql_query("drop table if exists q_mem_tim");

if (!$dropT)
  {
  die('Could not delete ' . mysql_error());
  }

$myquery = mysql_query(" create table q_mem_tim as SELECT member.idmember, member.own, member.provincecode, province.PROVINCE_NAME, member.amphurecode, amphur.AMPHUR_NAME, member.Sname, member.Ssurname, member.Hno, member.Moo, member.Sex, member.tambol, member.dateofbirth, member.migratedate, Year( Current_Date( ) ) -  Year( member.dateofbirth ) AS y,  DATEDIFF('2011-08-01',(migratedate)) AS d
FROM member
LEFT JOIN amphur ON ( member.amphurecode
 = amphur.AMPHUR_CODE )
LEFT JOIN province ON member.provincecode
 = province.PROVINCE_CODE");

if (!$myquery)
  {
  die('can not create q_member ' . mysql_error());
  }

echo "create q_mem_tim \n";

$drop_q_mem_sur = mysql_query("drop table if exists q_mem_sur");

if (!$drop_q_mem_sur)
  {
  die('Could not delete q_mem_sur ' . mysql_error());
  }

$myquery = mysql_query(" create table q_mem_sur as SELECT Count(*) As rowa,
  member.Ssurname,
  Sum(Case When ((member.status = '1')) Then 1 Else 0 End) As Status11
From member
Group By member.Ssurname
Order By rowa Desc");

if (!$myquery)
  {
  die('can not create myquery ' . mysql_error());
  }
echo "create q_mem_sur \n";


$dropT = mysql_query("drop table if exists q_mem_hno");
if (!$dropT)
  {
  die('Could not delete table q_mem_hno ' . mysql_error());
  }
$myquery = mysql_query(" create table q_mem_hno as select member.Hno, member.Moo, member.tambol, COUNT( member.Hno ) AS cntHno, COUNT(DISTINCT member.Ssurname) as NoSur
FROM member
GROUP BY member.Hno, member.Moo, member.tambol
ORDER BY cntHno DESC  ");

if (!$myquery)
  {
  die('can not create q_mem_hno ' . mysql_error());
  }

echo "create q_mem_hno \n";

$dropT = mysql_query("drop table if exists q_pro_ori");
if (!$dropT)
  {
  die('Could not delete table q_pro_ori ' . mysql_error());
  }
$myquery = mysql_query(" create table q_pro_ori as Select member.provincecode,
  count(*) As cnt  From member Group By member.provincecode Order By cnt Desc ");
if (!$myquery)
  {
  die('can not create q_pro_ori' . mysql_error());
  }
echo "create q_pro_ori \n";


$dropT = mysql_query("drop table if exists q_am_ori");
if (!$dropT)
  {
  die('Could not delete table q_am_ori ' . mysql_error());
  }
$myquery = mysql_query("create table q_am_ori as Select member.amphurecode,  member.provincecode,  count(*) As cnt  From member Group By member.amphurecode, member.provincecode Order By cnt Desc ");
if (!$myquery)
  {
  die('can not create q_am_ori ' . mysql_error());
  }
 echo "create q_am_ori \n";


$dropT = mysql_query("drop table if exists Sur_Hno_");
if (!$dropT)
  {
  die('Could not delete table Sur_Hno_ ' . mysql_error());
  }
$myquery = mysql_query("create table Sur_Hno_ as SELECT count( *  ) , Ssurname, q_mem_tim.Hno, q_mem_tim.Moo, q_mem_tim.tambol
FROM q_mem_tim
GROUP BY q_mem_tim.Ssurname, q_mem_tim.Hno, q_mem_tim.Moo, q_mem_tim.tambol
ORDER BY count( * ) DESC
 ");
if (!$myquery)
  {
  die('can not create q_am_ori ' . mysql_error());
  }


echo "process finish";    

?>
share|improve this question
Affected rows: 14513 Time: 135.281ms when I run with mysql gui tool , before in php code it work when it affected about 1000 rows – cteera Jun 6 '11 at 5:39
maybe you should change max_execution_time in php.ini, or executing set_time_limit(0) in your script. Although the documentation states that this configuration only affects time executing the php file, not database queries. So probably won't work, but it won't hurt (and maybe works). – Carlos Campderrós Jun 6 '11 at 6:00
Also, mysql.connect_timeout: "Connect timeout in seconds. On Linux this timeout is also used for waiting for the first answer from the server." – Carlos Campderrós Jun 6 '11 at 6:02
And, more information from the mysql side of things: dev.mysql.com/doc/refman/5.0/en/gone-away.html . Probably worth have a look at max_allowed_packet – Carlos Campderrós Jun 6 '11 at 6:06
i set up max_allowed_packet to 500M but it not work – cteera Jun 6 '11 at 11:06
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.