123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_DB_pdo_utility extends CI_DB_utility {
-
- protected function _backup($params = array())
- {
-
- return $this->db->display_error('db_unsupported_feature');
- }
- }
|