NAME
DBIx::Placeholder::Named - DBI with named placeholders
SYNOPSIS
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, });
DESCRIPTION
DBIx::Placeholder::Named is a subclass of DBI, which implements the ability to understand named placeholders.
AUTHOR
Copyright (c) 2007, Igor Sutton Lopes "<IZUT@cpan.org>". All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.