• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/

Lines Matching +refs:double +refs:column

135 pairs, uses the hashref as the L</column_info> for that column. Repeated
138 The column names given will be created as accessor methods on your
161 Use this to set the name of the accessor method for this column. If unset,
162 the name of the column will be used.
168 This contains the column type. It is automatically filled if you use the
179 The length of your column, if it is a column type that can have a size
195 Set this to a true value for a column whose value is somehow
206 if this column contains numeric data. This controls how set_column
207 decides whether to consider a column dirty after an update: if
212 first access to the column, based on the column C<data_type>. The
219 Set this to a true value for a column that contains a key from a
227 Set this to the default value which will be inserted into a column by
240 Set this on a primary key column to the name of the sequence used to
247 Set this to a true value for a column whose value is retrieved automatically
260 to add extra non-generic data to the column. For example: C<< extra
262 column to unsigned. For more details, see
279 Add a single column and optional column info. Uses the same column
291 # If next entry is { ... } use that for the column info, if not
315 Returns true if the source has a column of this name, false otherwise.
320 my ($self, $column) = @_;
321 return exists $self->_columns->{$column};
336 Returns the column metadata hashref for a column, as originally passed
343 my ($self, $column) = @_;
344 $self->throw_exception("No such column $column")
345 unless exists $self->_columns->{$column};
347 if ( ! $self->_columns->{$column}{data_type}
369 return $self->_columns->{$column};
378 =item Return value: Ordered list of column names
384 Returns all column names in the order they were declared to L</add_columns>.
410 B<Warning>: Removing a column that is also used in the sources primary
426 Remove a single column by name from the result source, similar to
429 B<Warning>: Removing a column that is also used in the sources primary
479 $self->throw_exception("No such column $col on table " . $self->name)
493 =item Return value: Ordered list of primary column names
546 Throws an error if any of the given column names do not yet exist on
559 $self->throw_exception("No such column $col on table " . $self->name)
584 columns. The name is created by joining the table name and each column
620 column names as values.
972 accessor to double as a column accessor). For C<multi> accessors, an
1127 # whose foreign column set are our self columns on $rel and whose self
1350 "Unable to resolve relationship '%s' from object %s: column '%s' not "
1386 # array of column names for each of those relationships. Column names are
1577 Enables the on-demand automatic loading of the above column