DBIx-Safe

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

1.2.4 September 2007
    Public release

1.2.0
    Change to a pseudo-inside-out structure

1.1.9
    Fully functioning version, Postgres support only

1.0.0
    Original design by Jon Jensen <jon@endpoint.com>
    and Greg Sabino Mullane <greg@endpoint.com>

LICENSE  view on Meta::CPAN

Copyright (c) 2005, 2006, 2007
  Greg Sabino Mullane <greg@endpoint.com>. All right reserved.

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, 
     this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, 
     this list of conditions and the following disclaimer in the documentation 
     and/or other materials provided with the distribution.

META.yml  view on Meta::CPAN

--- #YAML:1.0
name                : DBIx-Safe
version             : 1.2.5
abstract            : Safe wrapper to DBI interface
author:              
  - Greg Sabino Mullane <greg@endpoint.com>

license             : bsd
dynamic_config      : 1
distribution_type   : module

requires:
  DBI               : 1.49
  DBD::Pg           : 1.49
recommends:
  Test::Dynamic     : 1.3.1

Makefile.PL  view on Meta::CPAN

    NAME         => 'DBIx::Safe',
    VERSION_FROM => 'Safe.pm',
    PREREQ_PM    => {
					 DBD::Pg       => 1.49,
					 DBI           => 1.49,
					 Test::Simple  => 0.30,
					 Test::More    => 0.61,
					 Test::Harness => 2.03,
				 },
	ABSTRACT     => 'Safe wrapper to DBI interface',
    AUTHOR       => 'Greg Sabino Mullane <greg@endpoint.com>',
    NO_META      => 1,
    clean        => { FILES => '*~ *.tmp outgoingmail.*' },
);
package MY;
sub manifypods {
	my $after = "\t \$(NOECHO) pod2html Safe.pm > Safe.pm.html\n\t\$(NOECHO) \$(RM_F) pod*.tmp pm_to_blib\n";
	$after .= qq{\t\$(NOECHO) \$(PERL) -pi -e "s/<link.*?>//" Safe.pm.html\n};
	$after .= qq{\t\$(NOECHO) \$(ECHO) Created Safe.pm.html\n};
	return shift->SUPER::manifypods(@_) . $after;
}

README  view on Meta::CPAN

DBIx::Safe - safer access to databases via DBI

DESCRIPTION:
------------

This is version 1.2.5 of DBIx::Safe

COPYRIGHT:
----------

	Copyright (c) 2007 Greg Sabino Mullane <greg@endpoint.com>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.3 or,
at your option, any later version of Perl 5 you may have available.


REQUIREMENTS:
-------------

    build, test, and install Perl 5             (at least 5.8.3)

Safe.pm  view on Meta::CPAN

# -*-cperl-*-
#
# Copyright 2006-2007 Greg Sabino Mullane <greg@endpoint.com>
#
# DBIx::Safe is a safer way of handling database connections.
# You can specify exactly which commands can be run.
#


package DBIx::Safe;

use 5.008003;
use utf8;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.220 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )