Show reset_db_sequence.php syntax highlighted
<?php
/**
* @copyright Copyright © Intermesh 2006
* @version $Revision: 1.4 $ $Date: 2006/04/24 08:07:16 $
*
* @author Merijn Schering <mschering@intermesh.nl>
This file is part of Group-Office.
Group-Office is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Group-Office is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Group-Office; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* This script will make sure admins and owners have access to all items.
* @package Framework
* @subpackage Scripts
*/
require('../../Group-Office.php');
$db = new db();
$db2 = new db();
$db->query("SHOW TABLES");
$tables = array();
while($db->next_record())
{
if($db->f(0) != 'db_sequence')
{
$db2->query("SHOW FIELDS FROM `".$db->f(0)."`");
while($db2->next_record())
{
if($db2->f('Field')=='id')
{
$tables[]=$db->f(0);
break;
}
}
}
}
foreach($tables as $table)
{
$max=0;
$sql = "SELECT max(id) FROM `$table`";
$db->query($sql);
$db->next_record();
$max = $db->f(0);
$sql = "REPLACE INTO db_sequence VALUES ('$table', '$max');";
$db->query($sql);
echo 'Setting '.$table.'='.$max.'<br />';
}
See more files for this project here