12.2 Design of DBIIf DBM is too primitive for your database requirements, you'll have to use a more sophisticated database package. Options include the commercial products Oracle, Sybase, and Informix, and the publically-available msql and mysql . Prior to Perl Version 5 and DBI, the problem was that with all the database packages to choose from, there was no way to universalize database support for Perl. You'd have to rebuild the Perl executable itself against libraries that included subroutines for direct access to the database package. For example, sybperl and oraperl are both packages for building Perl Version 4 with Sybase and Oracle calls embedded, respectively. An application written for sybperl would not be portable to Oracle, or vice-versa. However, since current versions of Perl support binary extension loading at runtime, database support can now be added at runtime, which simplifies adding database interfaces to Perl programs while keeping the size of the Perl binary to a minimum. Support for binary extensions doesn't mean that database access has been standardized. There are still many database extensions to Perl, each with a different API. However, they all share a strikingly similar set of commands: connect to the database, issue queries, fetch results, and disconnect. This consistency has made it possible to develop a standard set of methods to work with any database. DBI defines a set of functions, variables, and conventions that provide a consistent database programming interface for Perl. Although DBI itself is language-independent, most DBI drivers require applications to use a dialect of SQL (structured query language) to interact with the database engine. SQL is a standard that was developed to allow programmers to manipulate relational databases. There are many implementations of SQL, and each database server adds nuances that deviate from the standard. 12.2.1 Database Drivers (DBDs)The success of DBI is that it is only half of the story. The other half is a DBD, or a database driver. DBI provides the interface and framework for the drivers, but it's the database drivers that do the real work. Drivers implement the DBI methods for the private interface functions of the corresponding database engine. Unless you're developing a sophisticated database application, you probably don't care about the drivers except that you want to install the correct one. Table 12.1 lists database servers, where you can find them, and the DBD driver designed for it. (The freeware or shareware database servers are available for download, and some of the commercial servers offer evaluation copies for download.)
12.2.2 Creating a Database
Before you can open a connection to a database with DBI, you must
create the database. DBI isn't able to do this step for you, although your
DBD might allow you to. For example, DBD:mSQL provides a
If your DBD allows to you to create databases via the API, it's likely that it will allow you to drop them, too.perl -MDBI -e '$db_name = q[ perl -MDBI -e '$db_name = q[ 12.2.3 Database Handles and Statement Handles
DBI methods work on two different types of handles: database
handles and statement handles. A database handle is like a
filehandle: Statement handles are another thing entirely. DBI makes a distinction between the preparation of SQL statements and their execution, by allowing you to pre-format a statement into a statement handle. You can prepare a statement with the$db_handle = DBI->connect(dbi:mSQL:bookdb, undef, undef) || die("Connect error: $DBI::errstr");
prepare
method,
which returns a statement handle. You can then
assign a SQL statement to the statement handle via various
statement handle methods, and execute it with the
execute
method when you're done. (You can also
prepare and execute in the same command with the
do
method.)
Changes to the database are written to the database
automatically if the
AutoCommit attribute is turned on.
If AutoCommit is off, then use
the
AutoCommit is only one of many attributes that can be
set for both database and statement handles.
For example, if
12.2.4 Placeholders database and statement handles
Many database drivers allow you to use question marks as
placeholders in SQL statements, and then bind values
to the placeholders before executing them. This enables
you to prepare a single statement with placeholders and
then reuse it for each row of the database. For example,
the And a subsequent$st_handle = $db_handle->prepare(q{ insert into books (isbn, title) values (?, ?) }) || die db_handle->errstr;
execute
statement might read:
$st_handle->execute("1-56592-286-7", "Perl in a Nutshell") || die $db_handle->errstr; Copyright © 2001 O'Reilly & Associates. All rights reserved. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|