On Fri, Apr 02, 2004 at 11:35:40AM -0500, Michael Bowden wrote:
> Sirsi uses some non standard subfields to create links between records.
> Typically these subfields are '?' and '='.  How can I add these non
> standard subfields to records that I am creating/editing with
> MARC::Record?

MARC::Record is actually quite lenient about what you can use as a subfield. 

    $record->append_fields( 
        MARC::Field->new( 245, 0, 0, '?' => 'foo', '=' => 'bar' )
    );

Just make sure you quote '?' and '=' or else weirdness will ensue. :)

//Ed

Reply via email to