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.5 by root, Sat Jan 6 03:04:03 2001 UTC vs.
Revision 1.43 by root, Mon Mar 4 06:25:32 2019 UTC

1=head1 NAME 1=head1 NAME
2 2
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 $id = 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 "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 fewer lines of
31code. It should work with anything from perl-5.004_01 onwards, but I only
32support 5.005+. UTF8 handling (the C<sql_u*> family of functions) will
33only be effective with perl version 5.006 and beyond.
15 34
16=over 4 35If the descriptions here seem terse or if you always wanted to know
36what PApp is then have a look at the PApp module which uses this module
37extensively but also provides you with a lot more gimmicks to play around
38with to help you create cool applications ;)
17 39
18=cut 40=cut
19 41
20package PApp::SQL; 42package PApp::SQL;
21 43
44use Carp ();
22use DBI; 45use DBI ();
23
24#use PApp::Exception; # not yet used
25 46
26BEGIN { 47BEGIN {
27 use base Exporter; 48 use base qw(Exporter DynaLoader);
28 49
29 $VERSION = 0.11; 50 $VERSION = '2.002';
30 @EXPORT = qw( 51 @EXPORT = qw(
31 sql_exec sql_fetch sql_fetchall sql_exists sql_insertid $sql_exec 52 sql_exec sql_fetch sql_fetchall sql_exists sql_insertid $sql_exec
53 sql_uexec sql_ufetch sql_ufetchall sql_uexists
32 ); 54 );
33 @EXPORT_OK = qw( 55 @EXPORT_OK = qw(
34 connect_cached 56 connect_cached
35 ); 57 );
36 58
37 require XSLoader; 59 bootstrap PApp::SQL $VERSION;
38 XSLoader::load PApp::SQL, $VERSION;
39} 60}
61
62boot2 DBI::SQL_VARCHAR, DBI::SQL_INTEGER, DBI::SQL_DOUBLE;
40 63
41our $sql_exec; # last result of sql_exec's execute call 64our $sql_exec; # last result of sql_exec's execute call
42our $DBH; # the default database handle 65our $DBH; # the default database handle
43our $database; # the current SQL::Database object, if applicable 66our $Database; # the current SQL::Database object, if applicable
44 67
45our %dbcache; 68our %dbcache;
69
70=head2 Global Variables
71
72=over 4
73
74=item $sql_exec
75
76Since the C<sql_exec> family of functions return a statement handle there
77must be another way to test the return value of the C<execute> call. This
78global variable contains the result of the most recent call to C<execute>
79done by this module.
80
81=item $PApp::SQL::DBH
82
83The default database handle used by this module if no C<$DBH> was
84specified as argument. See C<sql_exec> for a discussion.
85
86=item $PApp::SQL::Database
87
88The current default C<PApp::SQL::Database>-object. Future versions might
89automatically fall back on this database and create database handles from
90it if neccessary. At the moment this is not used by this module but might
91be nice as a placeholder for the database object that corresponds to
92$PApp::SQL::DBH.
93
94=back
95
96=head2 Functions
97
98=over 4
46 99
47=item $dbh = connect_cached $id, $dsn, $user, $pass, $flags, $connect 100=item $dbh = connect_cached $id, $dsn, $user, $pass, $flags, $connect
48 101
49(not exported by by default) 102(not exported by by default)
50 103
51Connect to the database given by C<($dsn,$user,$pass)>, while using the 104Connect to the database given by C<($dsn,$user,$pass)>, while using the
52flags from C<$flags>. These are just the same arguments as given to 105flags from C<$flags>. These are just the same arguments as given to
53C<DBI->connect>. 106C<< DBI->connect >>.
54 107
55The database handle will be cached under the unique id C<$id>. If the same 108The database handle will be cached under the unique id
56id is requested later, the cached handle will be checked (using ping), and 109C<$id|$dsn|$user|$pass>. If the same id is requested later, the
110cached handle will be checked (using ping), and the connection will
57the connection will be re-established if necessary (be sure to prefix your 111be re-established if necessary (be sure to prefix your application or
58application or module name to the id to make it "more" unique. Things like 112module name to the id to make it "more" unique. Things like __PACKAGE__ .
59__PACKAGE__ . __LINE__ work fine as well). 113__LINE__ work fine as well).
114
115The reason C<$id> is necessary is that you might specify special connect
116arguments or special flags, or you might want to configure your $DBH
117differently than maybe other applications requesting the same database
118connection. If none of this is necessary for your application you can
119leave C<$id> empty (i.e. "").
60 120
61If specified, C<$connect> is a callback (e.g. a coderef) that will be 121If specified, C<$connect> is a callback (e.g. a coderef) that will be
62called each time a new connection is being established, with the new 122called each time a new connection is being established, with the new
63C<$dbh> as first argument. 123C<$dbh> as first argument.
64 124
65Examples: 125Examples:
66 126
67 # try your luck opening the papp database without access info 127 # try your luck opening the papp database without access info
68 $dbh = connect_cached __FILE__, "DBI:mysql:papp"; 128 $dbh = connect_cached __FILE__, "DBI:mysql:papp";
129
130Mysql-specific behaviour: The default setting of
131C<mysql_client_found_rows> is TRUE, you can overwrite this, though.
69 132
70=cut 133=cut
71 134
72sub connect_cached { 135sub connect_cached {
73 my ($id, $dsn, $user, $pass, $flags, $connect) = @_; 136 my ($id, $dsn, $user, $pass, $flags, $connect) = @_;
74 # the following line is duplicated in PApp::SQL::Database::new 137 # the following line is duplicated in PApp::SQL::Database::new
75 $id = "$id\0$dsn\0$user\0$pass"; 138 $id = "$id\0$dsn\0$user\0$pass";
76 unless ($dbcache{$id} && $dbcache{$id}->ping) { 139 unless ($dbcache{$id} && $dbcache{$id}->ping) {
77 #warn "connecting to ($dsn|$user|$pass|$flags)\n";#d#
78 # first, nuke our statement cache (sooory ;) 140 # first, nuke our statement cache (sooory ;)
79 cachesize cachesize 0; 141 cachesize cachesize 0;
142
143 # then make mysql behave more standardly by default
144 $dsn =~ /^[Dd][Bb][Ii]:mysql:/
145 and $dsn !~ /;mysql_client_found_rows/
146 and $dsn .= ";mysql_client_found_rows=1";
147
80 # then connect anew 148 # then connect anew
81 $dbcache{$id} = 149 $dbcache{$id} =
82 eval { DBI->connect($dsn, $user, $pass, $flags) } 150 eval { DBI->connect($dsn, $user, $pass, $flags) }
83 || eval { DBI->connect($dsn, $user, $pass, $flags) } 151 || eval { DBI->connect($dsn, $user, $pass, $flags) }
84 || die "unable to connect to database $dsn: $DBI::errstr\n"; 152 || Carp::croak "unable to connect to database $dsn: $DBI::errstr\n";
85 $connect->($dbcache{$id}) if $connect; 153 $connect->($dbcache{$id}) if $connect;
86 } 154 }
87 $dbcache{$id}; 155 $dbcache{$id};
88} 156}
89 157
90=item $sth = sql_exec [dbh,] [bind-vals...,] "sql-statement", [arguments...] 158=item $sth = sql_exec [dbh,] [bind-vals...,] "sql-statement", [arguments...]
159
160=item $sth = sql_uexec <see sql_exec>
91 161
92C<sql_exec> is the most important and most-used function in this module. 162C<sql_exec> is the most important and most-used function in this module.
93 163
94Runs the given sql command with the given parameters and returns the 164Runs the given sql command with the given parameters and returns the
95statement handle. The command and the statement handle will be cached 165statement handle. The command and the statement handle will be cached
96(with the database handle and the sql string as key), so prepare will be 166(with the database handle and the sql string as key), so prepare will be
97called only once for each distinct sql call (please keep in mind that the 167called only once for each distinct sql call (please keep in mind that the
98returned statement will always be the same, so, if you call C<sql_exec> 168returned statement will always be the same, so, if you call C<sql_exec>
99with the same dbh and sql-statement twice (e.g. in a subroutine you 169with the same dbh and sql-statement twice (e.g. in a subroutine you
100called), the statement handle for the first call mustn't be used. 170called), the statement handle for the first call mustn't not be in use
171anymore, as the subsequent call will re-use the handle.
101 172
102The database handle (the first argument) is optional. If it is missing, 173The database handle (the first argument) is optional. If it is missing,
103C<sql_exec> first tries to use the variable C<$DBH> in the current (= 174it tries to use database handle in C<$PApp::SQL::DBH>, which you can set
104calling) package and, if that fails, it tries to use database handle in 175before calling these functions. NOTICE: future and former versions of
105C<$PApp::SQL::DBH>, which you can set before calling these functions. 176PApp::SQL might also look up the global variable C<$DBH> in the callers
177package.
106 178
179=begin comment
180
181If it is missing, C<sql_exec> first tries to use the variable C<$DBH>
182in the current (= calling) package and, if that fails, it tries to use
183database handle in C<$PApp::SQL::DBH>, which you can set before calling
184these functions.
185
186=end comment
187
107The actual return value from the C<$sth->execute> call is stored in the 188The actual return value from the C<< $sth->execute >> call is stored in
108package-global (and exported) variable C<$sql_exec>. 189the package-global (and exported) variable C<$sql_exec>.
109 190
110If any error occurs C<sql_exec> will throw an exception. 191If any error occurs C<sql_exec> will throw an exception.
192
193C<sql_uexec> is similar to C<sql_exec> but upgrades all input arguments to
194UTF-8 before calling the C<execute> method.
111 195
112Examples: 196Examples:
113 197
114 # easy one 198 # easy one
115 my $st = sql_exec "select name, id from table where id = ?", $id; 199 my $st = sql_exec "select name, id from table where id = ?", $id;
125 sql_exec $dbh, "update file set name = ?", "oops.txt"; 209 sql_exec $dbh, "update file set name = ?", "oops.txt";
126 210
127 211
128=item sql_fetch <see sql_exec> 212=item sql_fetch <see sql_exec>
129 213
214=item sql_ufetch <see sql_uexec>
215
130Execute a sql-statement and fetch the first row of results. Depending on 216Execute an sql-statement and fetch the first row of results. Depending on
131the caller context the row will be returned as a list (array context), or 217the caller context the row will be returned as a list (array context), or
132just the first columns. In table form: 218just the first columns. In table form:
133 219
134 CONTEXT RESULT 220 CONTEXT RESULT
135 void () 221 void ()
146 232
147 my($name, $amount) = sql_fetch "select ...", args... 233 my($name, $amount) = sql_fetch "select ...", args...
148 234
149... and it's still quite fast unless you fetch large amounts of data. 235... and it's still quite fast unless you fetch large amounts of data.
150 236
237C<sql_ufetch> is similar to C<sql_fetch> but upgrades all input values to
238UTF-8 and forces all result values to UTF-8 (this does I<not> include result
239parameters, only return values. Using bind variables in conjunction with
240sql_u* functions might result in undefined behaviour - we use UTF-8 on
241bind-variables at execution time and it seems to work on DBD::mysql as it
242ignores the UTF-8 bit completely. Which just means that that DBD-driver is
243broken).
244
151=item sql_fetchall <see sql_exec> 245=item sql_fetchall <see sql_exec>
246
247=item sql_ufetchall <see sql_uexec>
152 248
153Similarly to C<sql_fetch>, but all result rows will be fetched (this is 249Similarly to C<sql_fetch>, but all result rows will be fetched (this is
154of course inefficient for large results!). The context is ignored (only 250of course inefficient for large results!). The context is ignored (only
155list context makes sense), but the result still depends on the number of 251list context makes sense), but the result still depends on the number of
156columns in the result: 252columns in the result:
168 264
169 for (sql_fetchall "select name, age, place from user") { 265 for (sql_fetchall "select name, age, place from user") {
170 my ($name, $age, $place) = @$_; 266 my ($name, $age, $place) = @$_;
171 } 267 }
172 268
269C<sql_ufetchall> is similar to C<sql_fetchall> but upgrades all input
270values to UTF-8 and forces all result values to UTF-8 (see the caveats in
271the description of C<sql_ufetch>, though).
272
173=item sql_exists "<table> where ...", args... 273=item sql_exists "<table_references> where <where_condition>...", args...
274
275=item sql_uexists <see sql_exists>
174 276
175Check wether the result of the sql-statement "select xxx from 277Check wether the result of the sql-statement "select xxx from
176$first_argument" would be empty or not (that is, imagine the string 278$first_argument" would be empty or not (that is, imagine the string
177"select from" were prepended to your statement (it isn't)). Should work 279"select * from" were prepended to your statement (it isn't)). Should work
178with every database but can be quite slow, except on mysql, where this 280with every database but can be quite slow, except on mysql, where this
179should be quite fast. 281should be quite fast.
282
283C<sql_uexists> is similar to C<sql_exists> but upgrades all parameters to
284UTF-8.
180 285
181Examples: 286Examples:
182 287
183 print "user 7 exists!\n" 288 print "user 7 exists!\n"
184 if sql_exists "user where id = ?", 7; 289 if sql_exists "user where id = ?", 7;
188 293
189=cut 294=cut
190 295
191=item $lastid = sql_insertid $sth 296=item $lastid = sql_insertid $sth
192 297
193Returns the last automatically created key value (e.g. for mysql 298Returns the last automatically created key value. It must be executed
194AUTO_INCREMENT or sybase IDENTITY fields). It must be executed directly
195after executing the insert statement that created it. 299directly after executing the insert statement that created it. This is
300what is actually returned for various databases. If your database is
301missing, please send me an e-mail on how to implement this ;)
302
303 mariadb: first C<AUTO_INCREMENT> column set to NULL
304 mysql: first C<AUTO_INCREMENT> column set to NULL
305 postgres: C<oid> column (is there a way to get the last SERIAL?)
306 sybase: C<IDENTITY> column of the last insert (slow)
307 informix: C<SERIAL> or C<SERIAL8> column of the last insert
308 sqlite: C<last_insert_rowid()>
309
310Except for sybase, this does not require a server access.
196 311
197=cut 312=cut
198 313
199sub sql_insertid($) { 314sub sql_insertid($) {
200 my $sth = shift or die "sql_insertid requires a statement handle"; 315 my $sth = shift or Carp::croak "sql_insertid requires a statement handle";
201 my $dbh = $sth->{Database}; 316 my $dbh = $sth->{Database};
202 my $driver = $dbh->{Driver}{Name}; 317 my $driver = $dbh->{Driver}{Name};
203 318
319 $driver eq "MariaDB" and return $sth->{mariadb_insertid};
204 $driver eq "mysql" and return $sth->{mysql_insertid}; 320 $driver eq "mysql" and return $sth->{mysql_insertid};
321 $driver eq "Pg" and return $sth->{pg_oid_status};
205 $driver eq "Sybase" and return sql_fetch($dbh, 'SELECT @@IDENTITY'); 322 $driver eq "Sybase" and return sql_fetch ($dbh, 'SELECT @@IDENTITY');
206 $driver eq "Informix" and return $sth->{ix_sqlerrd}[1]; 323 $driver eq "Informix" and return $sth->{ix_sqlerrd}[1];
324 $driver eq "SQLite" and return sql_fetch ($dbh, 'SELECT last_insert_rowid ()');
207 325
208 die "sql_insertid does not spport the dbd driver '$driver', please see PApp::SQL::sql_insertid"; 326 $dbh->last_insert_id (undef, undef, undef, undef)
209} 327}
210 328
211=item [old-size] = cachesize [new-size] 329=item [old-size] = cachesize [new-size]
212 330
213Returns (and possibly changes) the LRU cache size used by C<sql_exec>. The 331Returns (and possibly changes) the LRU cache size used by C<sql_exec>. The
214default is somewhere around 50 (= the 50 last recently used statements 332default is somewhere around 50 (= the 50 last recently used statements
215will be cached). It shouldn't be too large, since a simple linear listed 333will be cached). It shouldn't be too large, since a simple linear list
216is used for the cache at the moment (which, for small (<100) cache sizes 334is used for the cache at the moment (which, for small (<100) cache sizes
217is actually quite fast). 335is actually quite fast).
218 336
219The function always returns the cache size in effect I<before> the call, 337The function always returns the cache size in effect I<before> the call,
220so, to nuke the cache (for example, when a database connection has died 338so, to nuke the cache (for example, when a database connection has died
225 343
226=cut 344=cut
227 345
228=item reinitialize [not exported] 346=item reinitialize [not exported]
229 347
230Clears any internal caches (statement cache, database handle cache). 348Clears any internal caches (statement cache, database handle
349cache). Should be called after C<fork> and other accidents that invalidate
350database handles.
231 351
232=cut 352=cut
233 353
234sub reinitialize { 354sub reinitialize {
235 cachesize cachesize 0; 355 cachesize cachesize 0;
236 for (values %dbcache) { 356 for (values %dbcache) {
237 eval { $_->disconnect }; 357 eval { $_->{InactiveDestroy} = 1 };
238 } 358 }
239 undef %dbcache; 359 undef %dbcache;
240} 360}
241 361
242=back 362=back
243 363
244=cut 364=cut
245 365
366reinitialize;
367
368=head2 Type Deduction
369
370Since every database driver seems to deduce parameter types differently,
371usually wrongly, and at leats in the case of DBD::mysql, different in
372every other release or so, and this can and does lead to data corruption,
373this module does type deduction itself.
374
375What does it mean? Simple - sql parameters for placeholders will be
376explicitly marked as SQL_VARCHAR, SQL_INTEGER or SQL_DOUBLE the first time
377a statement is prepared.
378
379To force a specific type, you can either continue to use e.g. sql casts,
380or you can make sure to consistently use strings or numbers. To make a
381perl scalar look enough like a string or a number, use this when passing
382it to sql_exec or a similar functions:
383
384 "$string" # to pass a string
385 $num+0 # to pass a number
386
387=cut
388
246package PApp::SQL::Database; 389package PApp::SQL::Database;
247 390
248=head2 THE DATABASE CLASS 391=head2 The Database Class
249 392
250Again (sigh) the problem of persistency. What do you do when you have to serialize on object 393Again (sigh) the problem of persistency. What do you do when you have
251that contains (or should contain) a database handle? Short answer: you don't. Long answer: 394to serialize on object that contains (or should contain) a database
395handle? Short answer: you don't. Long answer: you can embed the necessary
252you can embed the necessary information to recreate the dbh when needed. 396information to recreate the dbh when needed.
253 397
254The C<PApp::SQL::Database> class does that, in a relatively efficient 398The C<PApp::SQL::Database> class does that, in a relatively efficient
255fashion: the overhead is currently a single method call per access (you 399fashion: the overhead is currently a single method call per access (you
256can cache the real dbh if you want). 400can cache the real dbh if you want).
257 401
290 434
291sub checked_dbh($) { 435sub checked_dbh($) {
292 my $dbh = $dbcache{$_[0][0]}; 436 my $dbh = $dbcache{$_[0][0]};
293 $dbh && $dbh->ping 437 $dbh && $dbh->ping
294 ? $dbh 438 ? $dbh
295 : PApp::SQL::connect_cached((split /\x00/, $_[0][0]), $_[0][1], $_[0][2]); 439 : PApp::SQL::connect_cached((split /\x00/, $_[0][0], 4), $_[0][1], $_[0][2]);
296} 440}
297 441
298=item $db->dsn 442=item $db->dsn
299 443
300Return the DSN (L<DBI>) fo the database object (e.g. for error messages). 444Return the DSN (L<DBI>) fo the database object (e.g. for error messages).
445
446=item $db->login
447
448Return the login name.
449
450=item $db->password
451
452Return the password (emphasizing the fact that the password is stored plaintext ;)
301 453
302=cut 454=cut
303 455
304sub dsn($) { 456sub dsn($) {
305 my $self = shift; 457 my $self = shift;
306 $self->[1][1]; 458 (split /\x00/, $self->[0])[1];
459}
460
461sub login($) {
462 my $self = shift;
463 (split /\x00/, $self->[0])[2];
464}
465
466sub password($) {
467 my $self = shift;
468 (split /\x00/, $self->[0])[3];
307} 469}
308 470
309=back 471=back
310 472
311=cut 473=cut
312 474
313reinitialize;
314
3151; 4751;
316 476
317=head1 BUGS
318
319As of this writing, sql_fetch and sql_fetchall are not very well tested
320(they were just re-written in C).
321
322sql_exists could be faster (it is written very ugly to not change the
323current package).
324
325=head1 SEE ALSO 477=head1 SEE ALSO
326 478
327L<PApp>. 479L<PApp>.
328 480
329=head1 AUTHOR 481=head1 AUTHOR
330 482
331 Marc Lehmann <pcg@goof.com> 483 Marc Lehmann <schmorp@schmorp.de>
332 http://www.goof.com/pcg/marc/ 484 http://home.schmorp.de/
333 485
334=cut 486=cut
335 487

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines