blob: c7736cc6df4b1ff1fa0ef62f96bece172a935fd7 [file] [log] [blame]
Andrey Andreevc5536aa2012-11-01 17:33:58 +02001<?php
Andrey Andreev8ae24c52012-01-16 13:05:23 +02002/**
3 * CodeIgniter
4 *
vlakofffe832492012-07-13 20:40:06 +02005 * An open source application development framework for PHP 5.2.4 or newer
Andrey Andreev8ae24c52012-01-16 13:05:23 +02006 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Open Software License version 3.0
10 *
11 * This source file is subject to the Open Software License (OSL 3.0) that is
Andrey Andreevf20fb982012-01-24 15:26:01 +020012 * bundled with this package in the files license.txt / license.rst. It is
Andrey Andreev8ae24c52012-01-16 13:05:23 +020013 * also available through the world wide web at this URL:
14 * http://opensource.org/licenses/OSL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
Andrey Andreevd947eba2012-04-09 14:58:28 +030019 * @package CodeIgniter
20 * @author EllisLab Dev Team
Andrey Andreev8ae24c52012-01-16 13:05:23 +020021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Andrey Andreevd947eba2012-04-09 14:58:28 +030022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
Andrey Andreev8ae24c52012-01-16 13:05:23 +020025 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Andrey Andreev8ae24c52012-01-16 13:05:23 +020028
29/**
30 * SQLite3 Utility Class
31 *
32 * @category Database
33 * @author Andrey Andreev
34 * @link http://codeigniter.com/user_guide/database/
35 */
36class CI_DB_sqlite3_utility extends CI_DB_utility {
37
Andrey Andreev8ae24c52012-01-16 13:05:23 +020038 /**
Andrey Andreevc98e93a2012-11-02 02:04:59 +020039 * Export
Andrey Andreev8ae24c52012-01-16 13:05:23 +020040 *
Andrey Andreevc98e93a2012-11-02 02:04:59 +020041 * @param array $params Preferences
Andrey Andreev8ae24c52012-01-16 13:05:23 +020042 * @return mixed
43 */
Andrey Andreevb457a402012-04-09 16:11:56 +030044 protected function _backup($params = array())
Andrey Andreev8ae24c52012-01-16 13:05:23 +020045 {
46 // Not supported
Andrey Andreev8d3afde2012-11-06 12:53:47 +020047 return $this->db->display_error('db_unsupported_feature');
Andrey Andreev8ae24c52012-01-16 13:05:23 +020048 }
Andrey Andreevf944d3b2012-03-20 22:12:55 +020049
Andrey Andreev8ae24c52012-01-16 13:05:23 +020050}
51
52/* End of file sqlite3_utility.php */
Andrey Andreevf944d3b2012-03-20 22:12:55 +020053/* Location: ./system/database/drivers/sqlite3/sqlite3_utility.php */