5 use FS::Record qw( qsearch qsearchs );
11 FS::queue_arg - Object methods for queue_arg records
17 $record = new FS::queue_arg \%hash;
18 $record = new FS::queue_arg { 'column' => 'value' };
20 $error = $record->insert;
22 $error = $new_record->replace($old_record);
24 $error = $record->delete;
26 $error = $record->check;
30 An FS::queue_arg object represents job argument. FS::queue_arg inherits from
31 FS::Record. The following fields are currently supported:
35 =item argnum - primary key
37 =item jobnum - see L<FS::queue>
39 =item frozen - argument is frozen with Storable
51 Creates a new argument. To add the argument to the database, see L<"insert">.
53 Note that this stores the hash reference, not a distinct copy of the hash it
54 points to. You can ask the object for a copy with the I<hash> method.
58 # the new method can be inherited from FS::Record, if a table method is defined
60 sub table { 'queue_arg'; }
64 Adds this record to the database. If there is an error, returns the error,
65 otherwise returns false.
69 # the insert method can be inherited from FS::Record
73 Delete this record from the database.
77 # the delete method can be inherited from FS::Record
79 =item replace OLD_RECORD
81 Replaces the OLD_RECORD with this one in the database. If there is an error,
82 returns the error, otherwise returns false.
86 # the replace method can be inherited from FS::Record
90 Checks all fields to make sure this is a valid argument. If there is
91 an error, returns the error, otherwise returns false. Called by the insert
99 $self->ut_numbern('argnum')
100 || $self->ut_numbern('jobnum')
101 || $self->ut_enum('frozen', [ '', 'Y' ])
102 || $self->ut_anything('arg')
104 return $error if $error;
115 L<FS::queue>, L<FS::Record>, schema.html from the base documentation.