Skip to content

isutton/DBIx-Placeholder-Named

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DBIx::Placeholder::Named

DBIx::Placeholder::Named is a subclass of DBI, which implements the ability 
to understand named placeholders.

  use DBIx::Placeholder::Named;

  my $dbh = DBIx::Placeholder::Named->connect($dsn, $user, $password)
    or die DBIx::Placeholder::Named->errstr;

  my $sth = $dbh->prepare(
    q{ INSERT INTO some_table (this, that) VALUES (:this, :that) }
  );
    or die $dbh->errstr;

  $sth->execute({ this => $this, that => $that, });

INSTALLATION

To install this module, run the following commands:

    perl Makefile.PL
    make
    make test
    make install


SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

    perldoc DBIx::Placeholder::Named

You can also look for information at:

    Search CPAN
        http://search.cpan.org/dist/DBIx-Placeholder-Named

    CPAN Request Tracker:
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Placeholder-Named

    AnnoCPAN, annotated CPAN documentation:
        http://annocpan.org/dist/DBIx-Placeholder-Named

    CPAN Ratings:
        http://cpanratings.perl.org/d/DBIx-Placeholder-Named

COPYRIGHT AND LICENCE

Copyright (C) 2007, 2008, 2009 Igor Sutton

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

About

Named placeholders on top of Perl's DBI.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages