NAME

Koha::Contrib::Tamil::RecordReader - Koha biblio/authority records reader

VERSION

version 0.001

SYNOPSYS

# Read all biblio records and returns MARC::Record objects
# Do it for a default Koha instace.
my $reader = Koha::Contrib::Tamil::RecordReader->new( koha => Koha->new() );
while ( $record = $reader->read() ) {
    print $record->as_formatted(), "\n";
}

my $reader = Koha::Contrib::RecordReader->new(
  koha => k$, source => 'biblio', select => 'all' );

my $reader = Koha::Contrib::Tamil::RecordReader->new(
  koha => k$, source => 'biblio', select => 'queue' );

my $k = Koha->new( '/usr/local/koha-world/etc/koha-conf.xml' );
# Return XML records.
my $reader = Koha::Contrib::Tamil::RecordReader->new(
  koha => k$, source => authority, select => 'queue', xml => 1 );

AUTHOR

Frederic Demians <f.demians@tamil.fr>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Frederic Demians.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.