function __init()
 {
     /* db_con */
     parent::__init();
     $this->store =& $this->caller;
     $this->handler_type = 'delete';
 }
예제 #2
0
 function __init()
 {
     /* db_con, store_log_inserts */
     parent::__init();
     $this->store =& $this->caller;
     $this->write_buffer_size = $this->v('store_write_buffer', 5000, $this->a);
 }
 function __init()
 {
     /* db_con */
     parent::__init();
     $this->store =& $this->caller;
     $con = $this->store->getDBCon();
     $this->handler_type = 'select';
 }
 function __init()
 {
     /* db_con, store_log_inserts */
     parent::__init();
     $this->store =& $this->caller;
     $this->write_buffer_size = $this->v('store_write_buffer', 2500, $this->a);
     $this->keep_time_limit = $this->v('keep_time_limit', 0, $this->a);
     $this->split_threshold = $this->v('store_split_threshold', 0, $this->a);
 }
 function __init()
 {
     /* db_con, store_log_inserts */
     parent::__init();
     $this->store = $this->caller;
     $this->write_buffer_size = $this->v('store_write_buffer', 2500, $this->a);
     $this->split_threshold = $this->v('store_split_threshold', 0, $this->a);
     $this->strip_mb_comp_str = $this->v('store_strip_mb_comp_str', 0, $this->a);
 }
예제 #6
0
 function __init()
 {
     /* db_con */
     parent::__init();
     $this->store =& $this->caller;
     $con = $this->store->getDBCon();
     $this->handler_type = 'select';
     $this->engine_type = $this->v('store_engine_type', 'MyISAM', $this->a);
 }
 function __init()
 {
     /* db_con, store_log_inserts */
     parent::__init();
     $this->store =& $this->caller;
     $this->write_buffer_size = $this->v('store_write_buffer', 2500, $this->a);
     $this->split_threshold = $this->v('store_split_threshold', 0, $this->a);
     $this->has_pcre_unicode = @preg_match('/\\pL/u', 'test');
     $this->strip_mb_comp_str = $this->v('store_strip_mb_comp_str', 0, $this->a);
 }
예제 #8
0
 function __init()
 {
     /* db_con, store_log_inserts */
     parent::__init();
     $this->store = $this->caller;
     $this->write_buffer_size = $this->v('store_write_buffer', 2500, $this->a);
     /* Beware! Splitting is not fully supported yet. You won't be able to 
        to query your data if you split tables. Better don't touch this, 
        unless you know what you are doing! */
     $this->split_threshold = $this->v('store_split_threshold', 0, $this->a);
     $this->has_pcre_unicode = @preg_match('/\\pL/u', 'test');
     $this->strip_mb_comp_str = $this->v('store_strip_mb_comp_str', 0, $this->a);
 }
 function __init()
 {
     /* db_con */
     parent::__init();
     $this->store = $this->caller;
 }