-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
53 lines (33 loc) · 1.29 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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.