summaryrefslogtreecommitdiff
path: root/framework/Data/ActiveRecord/Exceptions/messages.txt
blob: 1d7d6e7dc62b29ca3ffd823ee78b1abb49e8470b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ar_readonly_exception						= Active Record '{0}' is read only.
ar_object_must_be_retrieved_before_delete	= Active Record must be retrieved first before deletion.
ar_object_must_not_be_null					= Active record object must not be null.
ar_object_marked_for_removal				= Active record object already marked for removed.
ar_column_meta_data_read_only				= Column meta is read only.
ar_invalid_database_driver					= Active Record does not support database '{0}'.
ar_invalid_finder_method					= Unsupported Active Record finder method '{0}'.
ar_no_primary_key_found						= Table '{0}' does not contain any primary key fields.
ar_primary_key_is_scalar					= Primary key '{1}' in table '{0}' is NOT a composite key, invalid value '{2} used.
ar_invalid_db_connection					= Missing or invalid default database connection for ActiveRecord class '{0}', default connection is set by the DbConnection property of TActiveRecordManager.
ar_mismatch_args_exception					= ActiveRecord finder method '{0}' expects {1} parameters but found only {2} parameters instead.
ar_invalid_tablename_property				= ActiveRecord tablename property '{0}::${1}' must be static and not null.
ar_value_must_not_be_null					= Property '{0}::${2}' must not be null as defined by column '{2}' in table '{1}'.
ar_missing_pk_values						= Missing primary key values in forming IN(key1, key2, ...) for table '{0}'.
ar_pk_value_count_mismatch					= Composite key value count mismatch in forming IN( (key1, key2, ..), (key3, key4, ..)) for table '{0}'.
ar_must_copy_from_array_or_object			= $data in {0}::copyFrom($data) must be an object or an array.
ar_mismatch_column_names					= In dynamic __call() method '{0}', no matching columns were found, valid columns for table '{2}' are '{1}'.
ar_invalid_table							= Missing, invalid or no permission for table/view '{0}'.