10.4 Relational DatabasesRelational databases have been around for a while, and while most commercial implementations have standardized on SQL, they differ significantly in the native C API. There have been several solutions to this. Microsoft popularized the ODBC (Open DataBase Connectivity) initiative, which has become the de facto standard in the (Wintel) PC world and provides a standard frontend to a large number of relational databases. PC Perl users using the ActiveWare port can access the ODBC library using the Win32::ODBC module. Meanwhile in the Perl/Unix world, Tim Bunce and other developers, who had been writing mutually incompatible wrapper modules for different databases, came up with the DBI (Database Interface) specification and implementation to merge their efforts. DBI is similar in spirit and interface to the ODBC specification. The ODBC specification has recently been accepted as the basis for the SQL CLI (Call-Level Interface) ISO standard, and it is expected that all database vendors will eventually provide a compliant-client library. When that becomes common-place, you can expect the DBI implementation to be rewritten to take advantage of this interface or go away completely. In this section, we will take a look at both DBI and Win32::ODBC. 10.4.1 DBI (Database Interface)Back in the days when modules and dynamic loading were not built into Perl, the database wrappers had to be linked in to create custom Perl executables called sybperl (for Sybase), oraperl (for Oracle), and so on. These libraries have since been rewritten to take advantage of Perl Version 5's features but have preserved the old API, which means that your scripts written for one database won't work for another. If you want portability, the DBI module is the only option. DBI makes calls to modules called DBDs (database drivers), which are specific to a database vendor and drive the native vendor API. If you use Oracle, for example, you can use oraperl for marginally better performance, or you can use the DBI and DBD::Oracle combination for portability. Oraperl and DBD::Oracle are both based on the same underlying code. The following web site, maintained by Alligator Descartes, is a wonderful repository of things DBI: http://www.symbolstone.org/technology/perl/DBI/ . Using DBI is a simple matter of connecting to the appropriate database and firing off SQL queries:[ 4 ]
use DBI; $dbname = 'empdb'; $user = 'sriram'; $password = 'foobar'; $dbd = 'Oracle'; $dbh = DBI->connect ($dbname, $user, $password, $dbd); if (!$dbh) { print "Error connecting to database; $DBI::errstr \n"; } connect returns a database handle , which represents the connection to a specific database. The $dbd parameter in this example tells it to load the DBD::Oracle module. This parameter can be followed by a reference to a hash of driver or connection-specific attributes. Some database vendors allow multiple connections to be created. All DBI statements return undef on failure. The error code and errors strings can be obtained from $DBI::err and $DBI::errstr; these reflect the errors in the last executed DBI statement. 10.4.1.1 Basic SQL accessesSQL statements can be executed like this (the equivalent of execute immediate in embedded SQL): $dbh->do ("delete from emptable where status != 'active'"); print "Error: $DBI::err .... $DBI::errstr" if $DBI::err; If you make the same query or a similar-looking query a number of times, you force the system to parse it over and over again. To avoid this overhead, you can compile a parameterized query using prepare , and execute it many times. The prepare method is given a query with parameter placeholders indicated by " ? ": $sth = $dbh->prepare ('insert into emptable (name, age) values (?, ?)'); You can execute this statement over and over again using the returned statement handle , each time supplying it an array of values corresponding to each placeholder. These values are sometimes referred to as binding parameters. In fact, do internally prepares and executes the query given to it. The following piece of code reads employee names and ages from standard input and uses the statement handle created above to insert rows into the database: while (defined($line = <>)) { chomp($line); # id, name, age separated by tab ($id, $name, $age) = split (/\t/, $line); $sth->execute($id, $name, $age); die "Error: $DBI::err .... $DBI::errstr" if $DBI::err; } If the field is nullable, you can indicate a null value by passing undef to execute . 10.4.1.2 Select
The following example shows how to retrieve information in bulk, using the SQL $cur = $dbh->prepare('select name, age from emptable where age < 40'); $cur->execute(); die "Prepare error: $DBI::err .... $DBI::errstr" if $DBI::err; while (($name, $age) = $cur->fetchrow) { print "Name:$name, Age: $age \n"; } $cur->finish();
The
prepare
statement returns a statement handle as before. When executed, this handle is associated internally with an open database cursor and is used to fetch each row returned by the database.
fetchrow
returns the values corresponding to the fields specified in the 10.4.1.3 Query meta-dataOnce a statement is prepared and executed, DBI stores the following pieces of information as attributes of the statement handle:
After a
Let us use what we have learned this far and create a Perl replacement for the interactive SQL frontends shipped with most relational databases (programs such as Example 10.1: sql.pl: Interactive SQL Frontenduse DBI; $dbname = 'DEMO732'; $user = 'scott'; $password = 'tiger'; $dbd = 'Oracle'; $dbh = DBI->connect($dbname,$user,$password,$dbd) || die "Error connecting $DBI::errstr\n";; while(1) { print "SQL> "; # Prompt $stmt = <STDIN>; last unless defined($stmt); last if ($stmt =~ /^\s*exit/); chomp ($stmt); $stmt =~ s/;\s*$//; $sth = $dbh->prepare($stmt); if ($DBI::err) { print STDERR "$DBI::errstr\n"; next; } $sth->execute() ; if ($DBI::err) { print STDERR "$DBI::errstr\n"; next; } if ($stmt =~ /^\s*select/i) { my $rl_names = $sth->{NAME}; # ref. to array of col. names while (@results = $sth->fetchrow) { # retrieve results if ($DBI::err) { print STDERR $DBI::errstr,"\n"; last; } foreach $field_name (@$rl_names) { printf "%10s: %s\n", $field_name, shift @results; } print "\n"; } $sth->finish; } } $dbh->commit;
The script prepares and executes all statements. If the statement is a 10.4.1.4 TransactionsWhen a database connection is created by using connect , DBI (or the database) automatically starts a transaction. To end a transaction, you can use the commit or rollback methods on the database handle; a new transaction is immediately started implicitly. Distributed transactions, as defined by the XA standard, are not supported. 10.4.1.5 Special functionsDriver-specific functions can be called by using the func method of the database handle. For example, the mSQL database driver provides an internal function called _ListFields , which returns information about columns in a table. It is invoked as follows: $ref = $dbh->func($table, '_ListFields'); Clearly, using func is a nonportable solution. 10.4.1.6 What DBI does not provideIt is instructive to list common database tasks for which DBI does not currently provide an interface. This is not meant as a slight on the DBI/DBD implementors; it is just an indicator of the fact that databases vary enormously in every aspect not touched by the standards committees.
10.4.2 Win32::ODBCThe Win32::ODBC module is available on the ActiveWare port of Microsoft Windows systems and resembles the DBI approach. Consider the following script, which retrieves all records from an employee table:
use Win32::ODBC;
$dbh = new Win32::ODBC ($dbname);
if $dbh->Sql("select * from emptable") {
print 'Error: ', $db->Error(), "\n";
$dbh->Close();
exit(1);
}
@names = $dbh->FieldNames();
while ($dbh->FetchFrow()) {
# Data returns the values
@values = $dbh->Data();
...
The Sql statement is equivalent to DBI's do . ODBC does not have the concept of statement handles; instead, the database handle is used to fetch the results of the last query. Meta-data is available in the form of two methods: TableList , which returns a list of table names, and ColAttributes , which returns the specified attribute of each of the supplied field names in the current record. Copyright © 2001 O'Reilly & Associates. All rights reserved. |
|