NAME
DBIx::DoMore - (**DEPRECATED** use DBIx::MultiStatementDo instead)
Multiple SQL statements in a single do() call with any DBI driver
VERSION
Version 0.01003
SYNOPSIS
use DBI;
use DBIx::DoMore;
my $create = <<'SQL';
CREATE TABLE parent(a, b, c , d );
CREATE TABLE child (x, y, "w;", "z;z");
CREATE TRIGGER "check;delete;pare
more»
#line 1
package Module::Install::ReadmeFromPod;
use strict;
use warnings;
use base qw(Module::Install::Base);
use vars qw($VERSION);
$VERSION = '0.08';
sub readme_from {
my $self = shift;
return unless $Module::Install::AUTHOR;
my $file = shift || return;
my $clean = shift;
require Pod::Text;
my $parser = Pod::Text->new();
open README, '> README' or die "$!\n";
$parser->output_f
more»
Revision history for DBIx-DoMore
0.01003 2010-05-22 03:55 CET
* DEPRECATED in favor of DBIx::MultiStatementDo.
0.01002 2010-05-20 17:20 CET
* Error in MANIFEST.SKIP which prevented inc/ from being bundled.
* Version fix in POD.
0.01001 2010-05-20 09:00 CET
* POD and Changes fixes.
0.01000 2010-05-19 23:00 CET
* First version, released on an unsuspecting world.