function splitTables()
 {
     ARC2::inc('StoreTableManager');
     $mgr = new ARC2_StoreTableManager($this->a, $this);
     $mgr->splitTables();
 }
Exemple #2
0
 function setUp($force = 0)
 {
     if (($force || !$this->isSetUp()) && ($con = $this->getDBCon())) {
         if ($this->getDBVersion() < '04-00-04') {
             /* UPDATE + JOINs */
             return $this->addError('MySQL version not supported. ARC requires version 4.0.4 or higher.');
         }
         ARC2::inc('StoreTableManager');
         $mgr = new ARC2_StoreTableManager($this->a, $this);
         $mgr->createTables();
     }
 }