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