The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

DBIx::Librarian::Library::ManyPerFile - multiple-queries-per-file support class for DBIx::Librarian

SYNOPSIS

Provides repository service to DBIx::Librarian. This package supports SQL in template files, where each file contains one or more query blocks.

DESCRIPTION

Format of queries in a template file is as follows:

queryname1:

[One or more SQL statements]

;;

Query name must start at beginning of line and end with a colon. Terminate is a pair of semicolons on a line by itself.

When searching through the repository for a matching tag, the first match will be used. Conflicts are not detected.

ManyPerFile recognizes when a query file is changed, and will instruct DBIx::Librarian to reload the query from the file.

METHODS

new
  my $archiver = new DBIx::Librarian::Library::ManyPerFile
                  ({ name => "value" ... });

Supported Library::ManyPerFile parameters:

  LIB         Search path for SQL files.  Defaults to [ "sql" ]

  EXTENSION   Filename extension for SQL files.  Defaults to ".sql"

  TRACE       Turns on function tracing in this package.
cache
  $archiver->cache($tag, $data);

Caches statement handles for later fetching via lookup().

AUTHOR

Jason W. May <jmay@pobox.com>

COPYRIGHT

Copyright (C) 2001 Jason W. May. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 47:

'=item' outside of any '=over'

Around line 177:

You forgot a '=back' before '=head1'