Re: MARC blob to MARC::Record object

2011-01-10 Thread Leif Andersson
[do...@uta.edu] Skickat: den 7 januari 2011 15:11 Till: Leif Andersson; 'Jon Gorman'; perl4lib Ämne: RE: MARC blob to MARC::Record object Hi Leif and Jon, use MARC::Record; ... my $record = MARC::Record-new_from_usmarc( $blob ); This works! From: Jon Gorman [mailto:jonathan.gor...@gmail.com

RE: MARC blob to MARC::Record object

2011-01-10 Thread Doran, Michael D
; perl4lib Subject: Re: MARC blob to MARC::Record object I hope you will forgive me for a late addendum. Not only do I have to apologize for the late arrival of this post, I also should apologize for its (lack of) seriousness. Actually - this is in every respect just a programming scherzo, so to speak

RE: MARC blob to MARC::Record object

2011-01-07 Thread Gorman, Jon
How do I make the MARC blob into a MARC::Record object (without having to first save it a file and read it in with MARC::File/Batch)? The MARC blob is already in a variable, so it doesn't make sense (to me) to write it out to a file just so I can read it back in. Unless I have to, natch

Re: MARC blob to MARC::Record object

2011-01-07 Thread Leif Andersson
7 januari 2011 00:18 Till: perl4lib Ämne: MARC blob to MARC::Record object I am working on a Perl script that retrieves data from our Voyager ILS via an SQL query. Among other data, I have MARC records in blob form, and the script processes one MARC record at a time. I want to be able to parse

MARC blob to MARC::Record object

2011-01-06 Thread Doran, Michael D
/printing data to a file. How do I make the MARC blob into a MARC::Record object (without having to first save it a file and read it in with MARC::File/Batch)? The MARC blob is already in a variable, so it doesn't make sense (to me) to write it out to a file just so I can read it back in. Unless

RE: MARC blob to MARC::Record object

2011-01-06 Thread Doran, Michael D
, January 06, 2011 6:19 PM To: Doran, Michael D; perl4lib Subject: RE: MARC blob to MARC::Record object How do I make the MARC blob into a MARC::Record object (without having to first save it a file and read it in with MARC::File/Batch)? The MARC blob is already in a variable, so