Update Methods
$values = array(
'nome'=>'Virgilio',
'email'=>NULL,
'status'=>1,
'create_at'=>'NOW()'
);
$this->MySQLWizard->insert($values);
$this->MySQLWizard->select();
$filters = array(
'nome'=>'Virgilio',
'status'=>1
);
$this->MySQLWizard->select($filters);
$values = array(
array(
'nome'=>'Virgilio',
'email'=>NULL,
'status'=>1,
'create_at'=>'NOW()'
),
array(
'nome'=>'Virgilio2',
'email'=>NULL,
'status'=>0,
'create_at'=>'NOW()'
),
);
$this->MySQLWizard->insert_batch($values);
$database_sets = (object)array(
'host'=>'127.0.0.1',
'user'=>'root',
'password'=>'',
'database'=>'teste',
'charset'=>'utf8',
'country'=>'Brazil'
);
$mysql = new MySQLWizard\MySQLWizard($database_sets);