New version submitted by TomB
[carbonphp.git] / Source / carbon / languages / english / database_lang.php
blob35c6379d55f672f95ad7e52cbfea8ec3fa3727a0
1 <?php
2 /*------------------------------------------------------------
3 * CarbonPHP framework (C) Tom Bell
4 * http://tombell.org.uk
5 *------------------------------------------------------------*/
7 if (!defined('CARBON_PATH'))
9 exit('Direct script access is not allowed.');
12 $lang['database_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string supplied';
13 $lang['database_unable_to_connect'] = 'Unable to connect to the database server using the settings supplied';
14 $lang['database_unable_to_select'] = 'Unable to select the specified database: %s';
15 $lang['database_unable_to_create'] = 'Unable to create the specified database: %s';
16 $lang['database_invalid_query'] = 'The query submitted is not valid.';
17 $lang['database_must_set_table'] = 'You must set the database table to be used with your query';
18 $lang['database_must_use_set'] = 'You must use the "set" method to update an entry.';
19 $lang['database_must_use_where'] = 'Updates are not allowed unless they contain a "where" clause';
20 $lang['database_del_must_use_where'] = 'Deletes are not allowed unless they contain a "where" clause';
21 $lang['database_field_param_missing'] = 'To fetch, fields requires the name of the table as a parameter';
22 $lang['database_unsupported_function'] = 'This feature is not available for the database you are using';
23 $lang['database_transaction_failure'] = 'Transaction failure: Rollback performed';
24 $lang['database_unable_to_drop'] = 'Unable to drop the specified database';
25 $lang['database_unsupported_feature'] = 'Unsupported feature of the database platform you are using';
26 $lang['database_unsupported_compression'] = 'The file compression format you chose is not supported by your server';
27 $lang['database_filepath_error'] = 'Unable to write data to the file path you have submitted';
28 $lang['database_invalid_cache_path'] = 'The cache path you submitted is not valid or writable';
29 $lang['database_table_name_required'] = 'A table name is required for that operation';
30 $lang['database_column_name_required'] = 'A column name is required for that operation';
31 $lang['database_column_definition_required'] = 'A column definition is required for that operation';
32 $lang['database_unable_to_set_charset'] = 'Unable to set client connection character set: %s';