ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/PApp-SQL/SQL.pm
(Generate patch)

Comparing PApp-SQL/SQL.pm (file contents):
Revision 1.9 by root, Sat Feb 3 17:48:02 2001 UTC vs.
Revision 1.10 by root, Mon Feb 5 14:05:08 2001 UTC

3PApp::SQL - absolutely easy yet fast and powerful sql access 3PApp::SQL - absolutely easy yet fast and powerful sql access
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use PApp::SQL; 7 use PApp::SQL;
8 # to be written 8
9 my $st = sql_exec $DBH, "select ... where a = ?", $a;
10
11 local $DBH = <database handle>;
12 my $st = sql_exec \my($bind_a, $bind_b), "select a,b ...";
13 my $st = sql_insertid
14 sql_exec "insert into ... values (?, ?)", $v1, $v2;
15 my $a = sql_fetch "select a from ...";
16 sql_fetch \my($a, $b), "select a,b ...";
17
18 sql_exists "name from table where name like 'a%'"
19 or die "a* required but not existent";
20
21 my $db = new PApp::SQL::Database "", "DBI:mysql:test", "user", "pass";
22 local $PApp::SQL::DBH = $db->checked_dbh; # does 'ping'
23
24 sql_exec $db->dbh, "select ...";
9 25
10=head1 DESCRIPTION 26=head1 DESCRIPTION
11 27
12This module provides you with easy-to-use functions to execute sql 28This module provides you with easy-to-use functions to execute sql
13commands (using DBI). Despite being easy to use, they are also quite 29commands (using DBI). Despite being easy to use, they are also quite
14efficient and allow you to write faster programs in less lines of code. 30efficient and allow you to write faster programs in less lines of code. It
31should work with anything from perl-5.004_01 onwards, but I only support
325.005+.
15 33
16=over 4 34If the descriptions here seem terse or if you always wanted to know
35what PApp is then have a look at the PApp module which uses this module
36extensively but also provides you with a lot more gimmicks to play around
37with to help you create cool applications ;)
17 38
18=cut 39=cut
19 40
20package PApp::SQL; 41package PApp::SQL;
21 42
22use DBI; 43use DBI ();
23
24#use PApp::Exception; # not yet used
25 44
26BEGIN { 45BEGIN {
27 use base Exporter; 46 use base qw(Exporter DynaLoader);
28 47
29 $VERSION = 0.11; 48 $VERSION = 0.12;
30 @EXPORT = qw( 49 @EXPORT = qw(
31 sql_exec sql_fetch sql_fetchall sql_exists sql_insertid $sql_exec 50 sql_exec sql_fetch sql_fetchall sql_exists sql_insertid $sql_exec
32 ); 51 );
33 @EXPORT_OK = qw( 52 @EXPORT_OK = qw(
34 connect_cached 53 connect_cached
35 ); 54 );
36 55
37 require XSLoader; 56 bootstrap PApp::SQL $VERSION;
38 XSLoader::load PApp::SQL, $VERSION;
39} 57}
40 58
41our $sql_exec; # last result of sql_exec's execute call 59our $sql_exec; # last result of sql_exec's execute call
42our $DBH; # the default database handle 60our $DBH; # the default database handle
43our $database; # the current SQL::Database object, if applicable 61our $Database; # the current SQL::Database object, if applicable
44 62
45our %dbcache; 63our %dbcache;
64
65=head2 GLOBAL VARIABLES
66
67=over 4
68
69=item $sql_exec
70
71Since the C<sql_exec> family of functions return a statement handle there
72must eb another way to test the return value of the C<execute> call. This
73global variable contains the result of the most recent call to C<execute>
74done by this module.
75
76=item $PApp::SQL::DBH
77
78The default database handle used by this module if no C<$DBH> was
79specified as argument and no C<$DBH> is found in the current package. See
80C<sql_exec> for a discussion.
81
82=item $PApp::SQL::Database
83
84The current default C<PApp::SQL::Database>-object. Future versions might
85automatically fall back on this database and create database handles from
86it if neccessary. At the moment this is not used by this module but might
87be nice as a placeholder for the database object that corresponds to
88$PApp::SQL::DBH.
89
90=back
91
92=head2 FUNCTIONS
93
94=over 4
46 95
47=item $dbh = connect_cached $id, $dsn, $user, $pass, $flags, $connect 96=item $dbh = connect_cached $id, $dsn, $user, $pass, $flags, $connect
48 97
49(not exported by by default) 98(not exported by by default)
50 99
330 379
331=cut 380=cut
332 381
3331; 3821;
334 383
335=head1 BUGS
336
337As of this writing, sql_fetch and sql_fetchall are not very well tested
338(they were just re-written in C).
339
340sql_exists could be faster (it is written very ugly to not change the
341current package).
342
343=head1 SEE ALSO 384=head1 SEE ALSO
344 385
345L<PApp>. 386L<PApp>.
346 387
347=head1 AUTHOR 388=head1 AUTHOR

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines