blob: 180bd4a0ecab7afbc10ed097e1f1df16bf5f2331 [file] [log] [blame]
Derek Allard2067d1a2008-11-13 22:59:24 +00001<?php
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
7 * NOTICE OF LICENSE
Andrey Andreev34ed3f32012-06-08 00:24:54 +03008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Open Software License version 3.0
Andrey Andreev34ed3f32012-06-08 00:24:54 +030010 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -050011 * This source file is subject to the Open Software License (OSL 3.0) that is
12 * bundled with this package in the files license.txt / license.rst. It is
13 * 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 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreevc5536aa2012-11-01 17:33:58 +020027defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +000028
29$lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.';
30$lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.';
31$lang['db_unable_to_select'] = 'Unable to select the specified database: %s';
32$lang['db_unable_to_create'] = 'Unable to create the specified database: %s';
33$lang['db_invalid_query'] = 'The query you submitted is not valid.';
34$lang['db_must_set_table'] = 'You must set the database table to be used with your query.';
Derek Allard2067d1a2008-11-13 22:59:24 +000035$lang['db_must_use_set'] = 'You must use the "set" method to update an entry.';
Derek Jones2a58e7a2010-03-02 17:53:38 -060036$lang['db_must_use_index'] = 'You must specify an index to match on for batch updates.';
37$lang['db_batch_missing_index'] = 'One or more rows submitted for batch updating is missing the specified index.';
Derek Allard2067d1a2008-11-13 22:59:24 +000038$lang['db_must_use_where'] = 'Updates are not allowed unless they contain a "where" clause.';
39$lang['db_del_must_use_where'] = 'Deletes are not allowed unless they contain a "where" or "like" clause.';
40$lang['db_field_param_missing'] = 'To fetch fields requires the name of the table as a parameter.';
41$lang['db_unsupported_function'] = 'This feature is not available for the database you are using.';
42$lang['db_transaction_failure'] = 'Transaction failure: Rollback performed.';
43$lang['db_unable_to_drop'] = 'Unable to drop the specified database.';
44$lang['db_unsuported_feature'] = 'Unsupported feature of the database platform you are using.';
45$lang['db_unsuported_compression'] = 'The file compression format you chose is not supported by your server.';
46$lang['db_filepath_error'] = 'Unable to write data to the file path you have submitted.';
47$lang['db_invalid_cache_path'] = 'The cache path you submitted is not valid or writable.';
48$lang['db_table_name_required'] = 'A table name is required for that operation.';
49$lang['db_column_name_required'] = 'A column name is required for that operation.';
50$lang['db_column_definition_required'] = 'A column definition is required for that operation.';
51$lang['db_unable_to_set_charset'] = 'Unable to set client connection character set: %s';
52$lang['db_error_heading'] = 'A Database Error Occurred';
53
54/* End of file db_lang.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +000055/* Location: ./system/language/english/db_lang.php */