home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _f5a6da08205e559e1a694237b713c19d < prev    next >
Text File  |  2000-03-23  |  128KB  |  2,366 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>DBI - Database independent interface for Perl</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> DBI - Database independent interface for Perl</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <UL>
  25.  
  26.         <LI><A HREF="#note">NOTE</A></LI>
  27.         <LI><A HREF="#recent changes">RECENT CHANGES</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  31.     <UL>
  32.  
  33.         <LI><A HREF="#architecture of a dbi application">Architecture of a DBI Application</A></LI>
  34.         <LI><A HREF="#notation and conventions">Notation and Conventions</A></LI>
  35.         <LI><A HREF="#outline usage">Outline Usage</A></LI>
  36.         <LI><A HREF="#general interface rules & caveats">General Interface Rules & Caveats</A></LI>
  37.         <LI><A HREF="#naming conventions and name space">Naming Conventions and Name Space</A></LI>
  38.         <LI><A HREF="#placeholders and bind values">Placeholders and Bind Values</A></LI>
  39.         <LI><A HREF="#sql  a query language">SQL - A Query Language</A></LI>
  40.     </UL>
  41.  
  42.     <LI><A HREF="#the dbi class">THE DBI CLASS</A></LI>
  43.     <UL>
  44.  
  45.         <LI><A HREF="#dbi class methods">DBI Class Methods</A></LI>
  46.         <LI><A HREF="#dbi utility functions">DBI Utility Functions</A></LI>
  47.         <LI><A HREF="#dbi dynamic attributes">DBI Dynamic Attributes</A></LI>
  48.     </UL>
  49.  
  50.     <LI><A HREF="#methods common to all handles">METHODS COMMON TO ALL HANDLES</A></LI>
  51.     <LI><A HREF="#attributes common to all handles">ATTRIBUTES COMMON TO ALL HANDLES</A></LI>
  52.     <LI><A HREF="#dbi database handle objects">DBI DATABASE HANDLE OBJECTS</A></LI>
  53.     <UL>
  54.  
  55.         <LI><A HREF="#database handle methods">Database Handle Methods</A></LI>
  56.         <LI><A HREF="#database handle attributes">Database Handle Attributes</A></LI>
  57.     </UL>
  58.  
  59.     <LI><A HREF="#dbi statement handle objects">DBI STATEMENT HANDLE OBJECTS</A></LI>
  60.     <UL>
  61.  
  62.         <LI><A HREF="#statement handle methods">Statement Handle Methods</A></LI>
  63.         <LI><A HREF="#statement handle attributes">Statement Handle Attributes</A></LI>
  64.     </UL>
  65.  
  66.     <LI><A HREF="#further information">FURTHER INFORMATION</A></LI>
  67.     <UL>
  68.  
  69.         <LI><A HREF="#transactions">Transactions</A></LI>
  70.         <LI><A HREF="#handling blob / long / memo fields">Handling BLOB / LONG / Memo Fields</A></LI>
  71.         <LI><A HREF="#simple examples">Simple Examples</A></LI>
  72.         <LI><A HREF="#threads and thread safety">Threads and Thread Safety</A></LI>
  73.         <LI><A HREF="#signal handling and canceling operations">Signal Handling and Canceling Operations</A></LI>
  74.     </UL>
  75.  
  76.     <LI><A HREF="#debugging">DEBUGGING</A></LI>
  77.     <LI><A HREF="#warning and error messages">WARNING AND ERROR MESSAGES</A></LI>
  78.     <UL>
  79.  
  80.         <LI><A HREF="#fatal errors">Fatal Errors</A></LI>
  81.         <LI><A HREF="#warnings">Warnings</A></LI>
  82.     </UL>
  83.  
  84.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  85.     <UL>
  86.  
  87.         <LI><A HREF="#database documentation">Database Documentation</A></LI>
  88.         <LI><A HREF="#books and journals">Books and Journals</A></LI>
  89.         <LI><A HREF="#manual pages">Manual Pages</A></LI>
  90.         <LI><A HREF="#mailing list">Mailing List</A></LI>
  91.         <LI><A HREF="#assorted related www links">Assorted Related WWW Links</A></LI>
  92.         <LI><A HREF="#faq">FAQ</A></LI>
  93.     </UL>
  94.  
  95.     <LI><A HREF="#authors">AUTHORS</A></LI>
  96.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  97.     <LI><A HREF="#acknowledgements">ACKNOWLEDGEMENTS</A></LI>
  98.     <LI><A HREF="#translations">TRANSLATIONS</A></LI>
  99.     <LI><A HREF="#support / warranty">SUPPORT / WARRANTY</A></LI>
  100.     <LI><A HREF="#training">TRAINING</A></LI>
  101.     <LI><A HREF="#outstanding issues to do">OUTSTANDING ISSUES TO DO</A></LI>
  102.     <LI><A HREF="#frequently asked questions">FREQUENTLY ASKED QUESTIONS</A></LI>
  103.     <UL>
  104.  
  105.         <LI><A HREF="#how fast is the dbi">How fast is the DBI?</A></LI>
  106.         <LI><A HREF="#why doesn't my cgi script work right">Why doesn't my CGI script work right?</A></LI>
  107.         <LI><A HREF="#how can i maintain a www connection to a database">How can I maintain a WWW connection to a database?</A></LI>
  108.         <LI><A HREF="#what about odbc">What about ODBC?</A></LI>
  109.         <LI><A HREF="#does the dbi have a year 2000 problem">Does the DBI have a year 2000 problem?</A></LI>
  110.     </UL>
  111.  
  112.     <LI><A HREF="#other related work and perl modules">OTHER RELATED WORK AND PERL MODULES</A></LI>
  113. </UL>
  114. <!-- INDEX END -->
  115.  
  116. <HR>
  117. <P>
  118. <H1><A NAME="name">NAME</A></H1>
  119. <P>DBI - Database independent interface for Perl</P>
  120. <P>
  121. <HR>
  122. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  123. <UL>
  124. <LI>Linux</LI>
  125. <LI>Solaris</LI>
  126. <LI>Windows</LI>
  127. </UL>
  128. <HR>
  129. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  130. <PRE>
  131.   use DBI;</PRE>
  132. <PRE>
  133.   @driver_names = DBI->available_drivers;
  134.   @data_sources = DBI->data_sources($driver_name);</PRE>
  135. <PRE>
  136.   $dbh = DBI->connect($data_source, $username, $auth, \%attr);</PRE>
  137. <PRE>
  138.   $rv  = $dbh->do($statement);
  139.   $rv  = $dbh->do($statement, \%attr);
  140.   $rv  = $dbh->do($statement, \%attr, @bind_values);</PRE>
  141. <PRE>
  142.   $ary_ref = $dbh->selectall_arrayref($statement);
  143.   @row_ary = $dbh->selectrow_array($statement);
  144.   $ary_ref = $dbh->selectcol_arrayref($statement);</PRE>
  145. <PRE>
  146.   $sth = $dbh->prepare($statement);
  147.   $sth = $dbh->prepare_cached($statement);</PRE>
  148. <PRE>
  149.   $rv = $sth->bind_param($p_num, $bind_value);
  150.   $rv = $sth->bind_param($p_num, $bind_value, $bind_type);
  151.   $rv = $sth->bind_param($p_num, $bind_value, \%attr);</PRE>
  152. <PRE>
  153.   $rv = $sth->execute;
  154.   $rv = $sth->execute(@bind_values);</PRE>
  155. <PRE>
  156.   $rc = $sth->bind_col($col_num, \$col_variable);
  157.   $rc = $sth->bind_columns(@list_of_refs_to_vars_to_bind);</PRE>
  158. <PRE>
  159.   @row_ary  = $sth->fetchrow_array;
  160.   $ary_ref  = $sth->fetchrow_arrayref;
  161.   $hash_ref = $sth->fetchrow_hashref;</PRE>
  162. <PRE>
  163.   $ary_ref  = $sth->fetchall_arrayref;</PRE>
  164. <PRE>
  165.   $rv = $sth->rows;</PRE>
  166. <PRE>
  167.   $rc  = $dbh->commit;
  168.   $rc  = $dbh->rollback;</PRE>
  169. <PRE>
  170.   $sql = $dbh->quote($string);</PRE>
  171. <PRE>
  172.   $rc  = $h->err;
  173.   $str = $h->errstr;
  174.   $rv  = $h->state;</PRE>
  175. <PRE>
  176.   $rc  = $dbh->disconnect;</PRE>
  177. <P>
  178. <H2><A NAME="note">NOTE</A></H2>
  179. <P>This is the DBI specification that corresponds to the DBI version 1.13
  180. ($Date: 1999/07/12 02:02:33 $).</P>
  181. <P>The DBI specification is evolving at a steady pace so it's
  182. important to check that you have the latest copy. The RECENT CHANGES
  183. section below has a summary of user-visible changes and the <EM>Changes</EM>
  184. file supplied with the DBI holds more detailed change information.</P>
  185. <P>Note also that whenever the DBI changes the drivers take some time to
  186. catch up. Recent versions of the DBI have added new features
  187. (marked *NEW* in the text) that may not yet be supported by the drivers
  188. you use. Talk to the authors of those drivers if you need the features.</P>
  189. <P>Please also read the DBI FAQ which is installed as a DBI::FAQ module so
  190. you can use perldoc to read it by executing the <CODE>perldoc DBI::FAQ</CODE> command.</P>
  191. <P>Extensions to the DBI and other DBI related modules use the <CODE>DBIx::*</CODE>
  192. namespace. See <A HREF="#naming conventions and name space">Naming Conventions and Name Space</A> and:</P>
  193. <PRE>
  194.   <A HREF="http://www.perl.com/CPAN/modules/by-module/DBIx/">http://www.perl.com/CPAN/modules/by-module/DBIx/</A></PRE>
  195. <P>
  196. <H2><A NAME="recent changes">RECENT CHANGES</A></H2>
  197. <P>A brief summary of significant user-visible changes in recent versions
  198. (if a recent version isn't mentioned it simply means that there were no
  199. significant user-visible changes in that version).</P>
  200. <DL>
  201. <DT><STRONG><A NAME="item_Between_DBI_1%2E00_and_DBI_1%2E09">Between DBI 1.00 and DBI 1.09</A></STRONG><BR>
  202. <DD>
  203. <PRE>
  204.   Added $dbh->selectcol_arrayref($statement) method.</PRE>
  205. <PRE>
  206.   Connect now allows you to specify attribute settings within the DSN
  207.     E.g., "dbi:Driver(RaiseError=>1,Taint=>1,AutoCommit=>0):dbname"</PRE>
  208. <PRE>
  209.   Added $h->{Taint}, $sth->{NAME_uc} and $sth->{NAME_lc} attributes.</PRE>
  210. </DL>
  211. <P>
  212. <HR>
  213. <H1><A NAME="description">DESCRIPTION</A></H1>
  214. <P>The DBI is a database access module for the Perl Language.  It defines
  215. a set of methods, variables and conventions that provide a consistent
  216. database interface independant of the actual database being used.</P>
  217. <P>It is important to remember that the DBI is just an interface. A layer
  218. of 'glue' between an application and one or more <EM>Database Driver</EM>
  219. modules.  It is the driver modules which do the real work. The DBI
  220. provides a standard interface and framework for the drivers to operate
  221. within.</P>
  222. <P>
  223. <H2><A NAME="architecture of a dbi application">Architecture of a DBI Application</A></H2>
  224. <PRE>
  225.              |<- Scope of DBI ->|
  226.                   .-.   .--------------.   .-------------.
  227.   .-------.       | |---| XYZ Driver   |---| XYZ Engine  |
  228.   | Perl  |       | |   `--------------'   `-------------'
  229.   | script|  |A|  |D|   .--------------.   .-------------.
  230.   | using |--|P|--|B|---|Oracle Driver |---|Oracle Engine|
  231.   | DBI   |  |I|  |I|   `--------------'   `-------------'
  232.   | API   |       | |...
  233.   |methods|       | |... Other drivers
  234.   `-------'       | |...
  235.                   `-'</PRE>
  236. <P>The API is the Application Perl-script (or Programming) Interface.  The
  237. call interface and variables provided by DBI to perl scripts. The API
  238. is implemented by the DBI Perl extension.</P>
  239. <P>The DBI 'dispatches' the method calls to the appropriate Driver for
  240. actual execution.  The DBI is also responsible for the dynamic loading
  241. of Drivers, error checking/handling and other duties.</P>
  242. <P>The Drivers implement support for a given type of Engine (database).
  243. Drivers contain implementations of the DBI methods written using the
  244. private interface functions of the corresponding Engine.  Only authors
  245. of sophisticated/multi-database applications or generic library
  246. functions need be concerned with Drivers.</P>
  247. <P>
  248. <H2><A NAME="notation and conventions">Notation and Conventions</A></H2>
  249. <PRE>
  250.   DBI     static 'top-level' class name
  251.   $dbh    Database handle object
  252.   $sth    Statement handle object
  253.   $drh    Driver handle object (rarely seen or used in applications)
  254.   $h      Any of the $??h handle types above
  255.   $rc     General Return Code  (boolean: true=ok, false=error)
  256.   $rv     General Return Value (typically an integer)
  257.   @ary    List of values returned from the database, typically a row of data
  258.   $rows   Number of rows processed (if available, else -1)
  259.   $fh     A filehandle
  260.   undef   NULL values are represented by undefined values in perl
  261.   \%attr  Reference to a hash of attribute values passed to methods</PRE>
  262. <P>Note that Perl will automatically destroy database and statement objects
  263. if all references to them are deleted.</P>
  264. <P>
  265. <H2><A NAME="outline usage">Outline Usage</A></H2>
  266. <P>First you need to load the DBI module:</P>
  267. <PRE>
  268.   use DBI;</PRE>
  269. <P>(also adding <CODE>use strict;</CODE> is recommended). Then you need to
  270. <A HREF="#connect">connect</A> to your data source and get a <EM>handle</EM> for that
  271. connection:</P>
  272. <PRE>
  273.   $dbh = DBI->connect($dsn, $user, $password,
  274.                       { RaiseError => 1, AutoCommit => 0 });</PRE>
  275. <P>Since connecting can be expensive you generally just connect at the
  276. start of your program and disconnect at the end.</P>
  277. <P>Explicitly defining the required AutoCommit behaviour is strongly
  278. recommended and may become mandatory in a later version.</P>
  279. <P>The DBI allows an application to `prepare' statements for later
  280. execution.  A prepared statement is identified by a statement handle.
  281. We'll call the perl variable $sth.</P>
  282. <P>Typical method call sequence for a select statement:</P>
  283. <PRE>
  284.   prepare,
  285.     execute, fetch, fetch, ...
  286.     execute, fetch, fetch, ...
  287.     execute, fetch, fetch, ...</PRE>
  288. <P>for example:</P>
  289. <PRE>
  290.   $sth = $dbh->prepare("select foo, bar from table where baz=?");</PRE>
  291. <PRE>
  292.   $sth->execute( $baz );</PRE>
  293. <PRE>
  294.   while ( @row = $sth->fetchrow_array ) {
  295.     print "@row\n";
  296.   }</PRE>
  297. <P>Typical method call sequence for a non-select statement:</P>
  298. <PRE>
  299.   prepare,
  300.     execute,
  301.     execute,
  302.     execute.</PRE>
  303. <P>for example:</P>
  304. <PRE>
  305.   $sth = $dbh->prepare("insert into table(foo,bar,baz) values (?,?,?)");</PRE>
  306. <PRE>
  307.   while(<CSV>) {
  308.     chop;
  309.     my ($foo,$bar,$baz) = split /,/;
  310.         $sth->execute( $foo, $bar, $baz );
  311.   }</PRE>
  312. <P>The <A HREF="#item_do"><CODE>do()</CODE></A> method can be used for non repeated non-select statement
  313. (or with drivers that don't support placeholders):</P>
  314. <PRE>
  315.   $rows_affected = $dbh->do("update your_table set foo = foo + 1");</PRE>
  316. <P>To commit your changes to the database (when <A HREF="#autocommit">AutoCommit</A> is off):</P>
  317. <PRE>
  318.   $dbh->commit;  # or call $dbh->rollback; to undo changes</PRE>
  319. <P>Finally, when you have finished working with the data source you should
  320. <A HREF="#disconnect">disconnect</A> from it:</P>
  321. <PRE>
  322.   $dbh->disconnect;</PRE>
  323. <P>
  324. <H2><A NAME="general interface rules & caveats">General Interface Rules & Caveats</A></H2>
  325. <P>The DBI does not have a concept of a `current session'. Every session
  326. has a handle object (i.e., a $dbh) returned from the connect method and
  327. that handle object is used to invoke database related methods.</P>
  328. <P>Most data is returned to the perl script as strings (null values are
  329. returned as undef).  This allows arbitrary precision numeric data to be
  330. handled without loss of accuracy.  Be aware that perl may not preserve
  331. the same accuracy when the string is used as a number.</P>
  332. <P>Dates and times are returned as character strings in the native format
  333. of the corresponding Engine.  Time Zone effects are Engine/Driver
  334. dependent.</P>
  335. <P>Perl supports binary data in perl strings and the DBI will pass binary
  336. data to and from the Driver without change. It is up to the Driver
  337. implementors to decide how they wish to handle such binary data.</P>
  338. <P>Character sets: Most databases which understand character sets have a
  339. default global charset and text stored in the database is, or should
  340. be, stored in that charset (if it's not then that's the fault of either
  341. the database or the application that inserted the data). When text is
  342. fetched it should be (automatically) converted to the charset of the
  343. client (presumably based on the locale). If a driver needs to set a
  344. flag to get that behaviour then it should do so. It should not require
  345. the application to do that.</P>
  346. <P>Multiple SQL statements may not be combined in a single statement
  347. handle, e.g., a single $sth (though some drivers do support this).</P>
  348. <P>Non-sequential record reads are not supported in this version of the DBI.
  349. In other words, records can only be fetched in the order that the
  350. database returned them and once fetched they are forgotten.</P>
  351. <P>Positioned updates and deletes are not directly supported by the DBI.
  352. See the description of the CursorName attribute for an alternative.</P>
  353. <P>Individual Driver implementors are free to provide any private
  354. functions and/or handle attributes that they feel are useful.
  355. Private driver functions can be invoked using the DBI <A HREF="#item_func"><CODE>func</CODE></A> method.
  356. Private driver attributes are accessed just like standard attributes.</P>
  357. <P>Many methods have an optional \%attr parameter which can be used to
  358. pass information to the driver implementing the method. Except where
  359. specifically documented the \%attr parameter can only be used to pass
  360. driver specific hints. In general you can ignore \%attr parameters
  361. or pass it as undef.</P>
  362. <P>
  363. <H2><A NAME="naming conventions and name space">Naming Conventions and Name Space</A></H2>
  364. <P>The DBI package and all packages below it <CODE>DBI::*</CODE> are reserved for
  365. use by the DBI. Extensions and related modules use the <CODE>DBIx::</CODE>
  366. namespace. Package names beginning with <CODE>DBD::</CODE> are reserved for use
  367. by DBI database drivers.  All environment variables used by the DBI
  368. or DBD's begin with 'DBI_' or 'DBD_'.</P>
  369. <P>The letter case used for attribute names is significant and plays an
  370. important part in the portability of DBI scripts.  The case of the
  371. attribute name is used to signify who defined the meaning of that name
  372. and its values.</P>
  373. <PRE>
  374.   Case of name  Has a meaning defined by
  375.   ------------  ------------------------
  376.   UPPER_CASE    Standards, e.g.,  X/Open, SQL92 etc (portable)
  377.   MixedCase     DBI API (portable), underscores are not used.
  378.   lower_case    Driver or Engine specific (non-portable)</PRE>
  379. <P>It is of the utmost importance that Driver developers only use
  380. lowercase attribute names when defining private attributes. Private
  381. attribute names must be prefixed with the driver name or suitable
  382. abbreviation (e.g., ora_ for Oracle, ing_ for Ingres etc).</P>
  383. <P>Driver Specific Prefix Registry:</P>
  384. <PRE>
  385.   ora_     DBD::Oracle
  386.   ing_     DBD::Ingres
  387.   odbc_    DBD::ODBC
  388.   syb_     DBD::Sybase
  389.   db2_     DBD::DB2
  390.   ix_      DBD::Informix
  391.   f_       DBD::File
  392.   csv_     DBD::CSV
  393.   file_    DBD::TextFile
  394.   xbase_   DBD::XBase
  395.   solid_   DBD::Solid
  396.   proxy_   DBD::Proxy
  397.   msql_    DBD::mSQL
  398.   mysql_   DBD::mysql</PRE>
  399. <P>
  400. <H2><A NAME="placeholders and bind values">Placeholders and Bind Values</A></H2>
  401. <P>Some drivers support Placeholders and Bind Values. These drivers allow
  402. a database statement to contain placeholders, sometimes called
  403. parameter markers, that indicate values that will be supplied later,
  404. before the prepared statement is executed.  For example, an application
  405. might use the following to insert a row of data into the SALES table:</P>
  406. <PRE>
  407.   insert into sales (product_code, qty, price) values (?, ?, ?)</PRE>
  408. <P>or the following, to select the description for a product:</P>
  409. <PRE>
  410.   select description from products where product_code = ?</PRE>
  411. <P>The <CODE>?</CODE> characters are the placeholders.  The association of actual
  412. values with placeholders is known as binding and the values are
  413. referred to as bind values.</P>
  414. <P>When using placeholders with the SQL <CODE>LIKE</CODE> qualifier you must
  415. remember that the placeholder substitutes for the whole string.
  416. So you should use ``... LIKE ? ...'' and include any wildcard
  417. characters in the value that you bind to the placeholder.</P>
  418. <P><STRONG>Null Values</STRONG></P>
  419. <P>Undefined values or <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> can be used to indicate null values.
  420. However, care must be taken in the particular case of trying to use
  421. null values to qualify a select statement. Consider:</P>
  422. <PRE>
  423.   select description from products where product_code = ?</PRE>
  424. <P>Binding an undef (NULL) to the placeholder will <EM>not</EM> select rows
  425. which have a NULL product_code! Refer to the SQL manual for your database
  426. engine or any SQL book for the reasons for this.  To explicitly select
  427. NULLs you have to say ``where product_code is NULL'' and to make that
  428. general you have to say:</P>
  429. <PRE>
  430.   ... WHERE (product_code = ? OR (? IS NULL AND product_code IS NULL))</PRE>
  431. <P>and bind the same value to both placeholders.</P>
  432. <P><STRONG>Performance</STRONG></P>
  433. <P>Without using placeholders, the insert statement above would have to
  434. contain the literal values to be inserted and it would have to be
  435. re-prepared and re-executed for each row. With placeholders, the insert
  436. statement only needs to be prepared once. The bind values for each row
  437. can be given to the execute method each time it's called. By avoiding
  438. the need to re-prepare the statement for each row the application
  439. typically runs many times faster! Here's an example:</P>
  440. <PRE>
  441.   my $sth = $dbh->prepare(q{
  442.     INSERT INTO sales (product_code, qty, price) VALUES (?, ?, ?)
  443.   }) || die $dbh->errstr;
  444.   while (<>) {
  445.       chop;
  446.       my ($product_code, $qty, $price) = split /,/;
  447.       $sth->execute($product_code, $qty, $price) || die $dbh->errstr;
  448.   }
  449.   $dbh->commit || die $dbh->errstr;</PRE>
  450. <P>See <A HREF="#execute">execute</A> and <A HREF="#bind_param">bind_param</A> for more details.</P>
  451. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_q"><CODE>q{...}</CODE></A> style quoting used in this example avoids clashing with
  452. quotes that may be used in the SQL statement. Use the double-quote like
  453. <A HREF="../../lib/Pod/perlfunc.html#item_qq"><CODE>qq{...}</CODE></A> operator if you want to interpolate variables into the string.
  454. See <A HREF="../../lib/Pod/perlop.html#quote and quotelike operators">Quote and Quote-like Operators in the perlop manpage</A> for more details.</P>
  455. <P>See <A HREF="#bind_column">bind_column</A> for a related method used to associate perl
  456. variables with the <EM>output</EM> columns of a select statement.</P>
  457. <P>
  458. <H2><A NAME="sql  a query language">SQL - A Query Language</A></H2>
  459. <P>Most DBI drivers require applications to use a dialect of SQL (the
  460. Structured Query Language) to interact with the database engine.  These
  461. links provide useful information and further links about SQL, the
  462. first is a good tutorial with much useful information and many links:</P>
  463. <PRE>
  464.   <A HREF="http://www.geocities.com/ResearchTriangle/Node/9672/sqltut.html">http://www.geocities.com/ResearchTriangle/Node/9672/sqltut.html</A>
  465.   <A HREF="http://www.jcc.com/sql_stnd.html">http://www.jcc.com/sql_stnd.html</A>
  466.   <A HREF="http://www.contrib.andrew.cmu.edu/~shadow/sql.html">http://www.contrib.andrew.cmu.edu/~shadow/sql.html</A></PRE>
  467. <P>The DBI itself does not mandate or require any particular language to
  468. be used.  It is language independant. In ODBC terms the DBI is in
  469. 'pass-thru' mode (individual drivers might not be). The only requirement
  470. is that queries and other statements must be expressed as a single
  471. string of letters passed as the first argument to the <A HREF="#prepare">prepare</A> method.</P>
  472. <P>For an interesting diversion on the <EM>real</EM> history of RDBMS and SQL,
  473. from the people who made it happen, see</P>
  474. <PRE>
  475.   <A HREF="http://ftp.digital.com/pub/DEC/SRC/technical-notes/SRC-1997-018-html/sqlr95.html">http://ftp.digital.com/pub/DEC/SRC/technical-notes/SRC-1997-018-html/sqlr95.html</A></PRE>
  476. <P>Follow the ``And the rest'' and ``Intergalactic dataspeak'' links for the
  477. SQL history.</P>
  478. <P>
  479. <HR>
  480. <H1><A NAME="the dbi class">THE DBI CLASS</A></H1>
  481. <P>
  482. <H2><A NAME="dbi class methods">DBI Class Methods</A></H2>
  483. <DL>
  484. <DT><STRONG><A NAME="item_connect"><STRONG>connect</STRONG></A></STRONG><BR>
  485. <DD>
  486. <PRE>
  487.   $dbh = DBI->connect($data_source, $username, $password)
  488.             || die $DBI::errstr;
  489.   $dbh = DBI->connect($data_source, $username, $password, \%attr)
  490.             || die $DBI::errstr;</PRE>
  491. <P>Establishes a database connection, or session, to the requested data_source.
  492. Returns a database handle object if the connect succeeds. Use
  493. $dbh->disconnect to terminate the connection.</P>
  494. <P>If the connect fails (see below) it returns undef and sets $DBI::err
  495. and $DBI::errstr (it does <EM>not</EM> set $! etc). Generally you should test
  496. the return status of connect and print $DBI::errstr if it has failed.</P>
  497. <P>Multiple simultaneous connections to multiple databases through multiple
  498. drivers can be made via the DBI. Simply make one connect call for each
  499. and keep a copy of each returned database handle.</P>
  500. <P>The $data_source value should begin with 'dbi:driver_name:'.  The
  501. driver_name part specifies the driver that will be used to make the
  502. connection (letter case is significant).</P>
  503. <P>As a convenience, if the $data_source parameter is undefined or empty the
  504. DBI will substitute the value of the environment variable DBI_DSN.
  505. If just the driver_name part is empty (i.e., data_source prefix is 'dbi::')
  506. the environment variable DBI_DRIVER is used. If neither variable is set
  507. then the connect dies.</P>
  508. <P>Examples of $data_source values:</P>
  509. <PRE>
  510.   dbi:DriverName:database_name
  511.   dbi:DriverName:database_name@hostname:port
  512.   dbi:DriverName:database=database_name;host=hostname;port=port</PRE>
  513. <P>There is <EM>no standard</EM> for the text following the driver name. Each
  514. driver is free to use whatever syntax it wants. The only requirement the
  515. DBI makes is that all the information is supplied in a single string.
  516. You must consult the documentation for the drivers you are using for a
  517. description of the syntax they require.  (Where a driver author needs
  518. to define a syntax for the data_source it is recommended that
  519. they follow the ODBC style, the last example above.)</P>
  520. <P>If the environment variable DBI_AUTOPROXY is defined (and the driver in
  521. $data_source is not 'Proxy') then the connect request will
  522. automatically be changed to:</P>
  523. <PRE>
  524.   dbi:Proxy:$ENV{DBI_AUTOPROXY};dsn=$data_source</PRE>
  525. <P>and passed to the DBD::Proxy module. DBI_AUTOPROXY would typically be
  526. ``hostname=...;port=...''. See <A HREF="../../site/lib/DBD/Proxy.html">the DBD::Proxy manpage</A> for more details.</P>
  527. <P>If $username or $password are <EM>undefined</EM> (rather than just empty)
  528. then the DBI will substitute the values of the DBI_USER and DBI_PASS
  529. environment variables respectively.  The DBI will warn if the
  530. environment variables are not defined. The use of the environment for
  531. these values is not recommended for security reasons. The mechanism is
  532. primarily intended to simplify testing.</P>
  533. <P>DBI->connect automatically installs the driver if it has not been
  534. installed yet. Driver installation <EM>always</EM> returns a valid driver
  535. handle or it <EM>dies</EM> with an error message which includes the string
  536. 'install_driver' and the underlying problem. So, DBI->connect will die
  537. on a driver installation failure and will only return undef on a
  538. connect failure, for which $DBI::errstr will hold the error.</P>
  539. <P>The $data_source argument (with the 'dbi:...:' prefix removed) and the
  540. $username and $password arguments are then passed to the driver for
  541. processing. The DBI does not define <EM>any</EM> interpretation for the
  542. contents of these fields.  The driver is free to interpret the
  543. data_source, username and password fields in any way and supply
  544. whatever defaults are appropriate for the engine being accessed
  545. (Oracle, for example, uses the ORACLE_SID and TWO_TASK env vars if no
  546. data_source is specified).</P>
  547. <P>The AutoCommit and PrintError attributes for each connection default to
  548. <EM>on</EM> (see <A HREF="#autocommit">AutoCommit</A> and <A HREF="#printerror">PrintError</A> for more information).
  549. However, it is <STRONG>strongly recommended</STRONG> that AutoCommit is <EM>explicitly</EM>
  550. defined as required rather than rely on the default. Future versions of
  551. the DBI may issue a warning if AutoCommit is not explicitly defined.</P>
  552. <P>The \%attr parameter can be used to alter the default settings of the
  553. PrintError, RaiseError, AutoCommit and other attributes. For example:</P>
  554. <PRE>
  555.   $dbh = DBI->connect($data_source, $user, $pass, {
  556.         PrintError => 0,
  557.         AutoCommit => 0
  558.   });</PRE>
  559. <P>You can also define connection attribute values within the $data_source
  560. parameter. For example</P>
  561. <PRE>
  562.   dbi:DriverName(PrintError=>0,Taint=>1):...</PRE>
  563. <P>Individual attributes values specified in this way take precedence over
  564. any conflicting values specified via the \%attrib parameter to <A HREF="#item_connect"><CODE>connect()</CODE></A>.</P>
  565. <P>Portable applications should not assume that a single driver will be
  566. able to support multiple simultaneous sessions. Though most do.</P>
  567. <P>Where possible each session ($dbh) is independent from the transactions
  568. in other sessions. This is useful where you need to hold cursors open
  569. across transactions, e.g., use one session for your long lifespan
  570. cursors (typically read-only) and another for your short update
  571. transactions.</P>
  572. <P>For compatibility with old DBI scripts the driver can be specified by
  573. passing its name as the fourth argument to connect (instead of \%attr):</P>
  574. <PRE>
  575.   $dbh = DBI->connect($data_source, $user, $pass, $driver);</PRE>
  576. <P>In this 'old-style' form of connect the $data_source should not start
  577. with 'dbi:driver_name:' and, even if it does, the embedded driver_name
  578. will be ignored. The $dbh->{AutoCommit} attribute is <EM>undefined</EM>. The
  579. $dbh->{PrintError} attribute is off. And the old DBI_DBNAME env var is
  580. checked if DBI_DSN is not defined. <EM>This 'old-style' connect will be
  581. withdrawn in a future version</EM>.</P>
  582. <DT><STRONG><A NAME="item_connect_cached_%2ANEW%2A"><STRONG>connect_cached</STRONG> *NEW*</A></STRONG><BR>
  583. <DD>
  584. <PRE>
  585.   $dbh = DBI->connect_cached($data_source, $username, $password)
  586.             || die $DBI::errstr;
  587.   $dbh = DBI->connect_cached($data_source, $username, $password, \%attr)
  588.             || die $DBI::errstr;</PRE>
  589. <P>Like <A HREF="#connect">connect</A> except that the database handle returned will be
  590. stored in a hash associated with the given parameters. If another call
  591. is made to connect_cached with the <EM>same parameter values</EM> then the
  592. corresponding cached $dbh will be returned, without contacting the data
  593. source, so long as it is still <EM>ok</EM>.
  594. If the cached database handle has been disconnected or the <A HREF="#item_ping"><CODE>ping()</CODE></A>
  595. method fails then it will be replaced with a new connection.</P>
  596. <P>Note that the behaviour of this method differs in several respects from the
  597. behaviour of the presistent connections implemented by Apache::DBI.</P>
  598. <P>This caching can be useful in some applications but it can also cause
  599. problems and should be used with care. The exact behaviour of this
  600. method <EM>is liable to change</EM>. If you intend to use it in any production
  601. applications your should discuss your needs in the dbi-users mailing list.</P>
  602. <P>The cache can be accessed (and cleared) via the <A HREF="#cachedkids">CachedKids</A> attribute.</P>
  603. <DT><STRONG><A NAME="item_available_drivers"><STRONG>available_drivers</STRONG></A></STRONG><BR>
  604. <DD>
  605. <PRE>
  606.   @ary = DBI->available_drivers;
  607.   @ary = DBI->available_drivers($quiet);</PRE>
  608. <P>Returns a list of all available drivers by searching for DBD::* modules
  609. through the directories in @INC. By default a warning will be given if
  610. some drivers are hidden by others of the same name in earlier
  611. directories. Passing a true value for $quiet will inhibit the warning.</P>
  612. <DT><STRONG><A NAME="item_data_sources"><STRONG>data_sources</STRONG></A></STRONG><BR>
  613. <DD>
  614. <PRE>
  615.   @ary = DBI->data_sources($driver);
  616.   @ary = DBI->data_sources($driver, \%attr);</PRE>
  617. <P>Returns a list of all data sources (databases) available via the named
  618. driver. The driver will be loaded if not already. If $driver is empty
  619. or undef then the value of the DBI_DRIVER environment variable will be
  620. used.</P>
  621. <P>Data sources will be returned in a form suitable for passing to the
  622. <A HREF="#connect">connect</A> method, i.e., they will include the ``dbi:$driver:'' prefix.</P>
  623. <P>Note that many drivers have no way of knowing what data sources might
  624. be available for it and thus, typically, return an empty or incomplete
  625. list.</P>
  626. <DT><STRONG><A NAME="item_trace"><STRONG>trace</STRONG></A></STRONG><BR>
  627. <DD>
  628. <PRE>
  629.   DBI->trace($trace_level)
  630.   DBI->trace($trace_level, $trace_filename)</PRE>
  631. <P>DBI trace information can be enabled for all handles using this DBI
  632. class method. To enable trace information for a specific handle use
  633. the similar $h->trace method described elsewhere.</P>
  634. <P><STRONG>Trace Levels:</STRONG></P>
  635. <PRE>
  636.   0 - trace disabled.
  637.   1 - trace DBI method calls returning with results.
  638.   2 - trace method entry with parameters and exit with results.
  639.   3 - as above, adding some high-level information from the driver
  640.       also adds some internal information from the DBI.
  641.   4 - as above, adding more detailed information from the driver
  642.       also includes DBI mutex information when using threaded perl.
  643.   5 and above - as above but with more and more obscure information.</PRE>
  644. <P>Trace level 1 is best for a simple overview of what's happening.
  645. Trace level 2 is a good choice for general purpose tracing.  Levels 3
  646. and above (up to 9) are best reserved for use when investigating a
  647. specific problem and you need to see 'inside' the driver and DBI.</P>
  648. <P>The trace output is detailed and typically <EM>very</EM> useful. Much of the
  649. trace output is formatted using the <A HREF="#neat">neat</A> function and thus strings
  650. in the trace output may be edited and truncated by it.</P>
  651. <P>Initially trace output is written to STDERR.  If $trace_filename is
  652. specified then the file is opened in append mode and <EM>all</EM> trace
  653. output (including that from other handles) is redirected to that file.
  654. Further calls to trace without a $trace_filename do not alter where
  655. the trace output is sent. If $trace_filename is undefined then
  656. trace output is sent to STDERR and the previous trace file closed.</P>
  657. <P>See also the $h-><A HREF="#item_trace"><CODE>trace()</CODE></A> and $h-><A HREF="#item_trace_msg"><CODE>trace_msg()</CODE></A> methodd and <A HREF="#debugging">DEBUGGING</A>
  658. for information about the DBI_TRACE environment variable.</P>
  659. </DL>
  660. <P>
  661. <H2><A NAME="dbi utility functions">DBI Utility Functions</A></H2>
  662. <DL>
  663. <DT><STRONG><A NAME="item_neat"><STRONG>neat</STRONG></A></STRONG><BR>
  664. <DD>
  665. <PRE>
  666.   $str = DBI::neat($value, $maxlen);</PRE>
  667. <P>Return a string containing a neat (and tidy) representation of the
  668. supplied value.</P>
  669. <P>Strings will be quoted (but internal quotes will not be escaped).
  670. Values <EM>known</EM> to be numeric will be unquoted. Undefined (NULL) values
  671. will be shown as <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> (without quotes). Unprintable characters will
  672. be replaced by dot (.).</P>
  673. <P>For result strings longer than $maxlen the result string will be
  674. truncated to $maxlen-4 and <CODE>...'</CODE> will be appended.  If $maxlen is 0
  675. or undef it defaults to $DBI::neat_maxlen which, in turn, defaults to 400.</P>
  676. <P>This function is designed to format values for human consumption.
  677. It is used internally by the DBI for <A HREF="#trace">trace</A> output. It should
  678. typically <EM>not</EM> be used for formating values for database use
  679. (see also <A HREF="#quote">quote</A>).</P>
  680. <DT><STRONG><A NAME="item_neat_list"><STRONG>neat_list</STRONG></A></STRONG><BR>
  681. <DD>
  682. <PRE>
  683.   $str = DBI::neat_list(\@listref, $maxlen, $field_sep);</PRE>
  684. <P>Calls DBI::neat on each element of the list and returns a string
  685. containing the results joined with $field_sep. $field_sep defaults
  686. to <CODE>", "</CODE>.</P>
  687. <DT><STRONG><A NAME="item_looks_like_number"><STRONG>looks_like_number</STRONG></A></STRONG><BR>
  688. <DD>
  689. <PRE>
  690.   @bool = DBI::looks_like_number(@array);</PRE>
  691. <P>Returns true for each element that looks like a number.
  692. Returns false for each element that does not look like a number.
  693. Returns undef for each element that is undefined or empty.</P>
  694. </DL>
  695. <P>
  696. <H2><A NAME="dbi dynamic attributes">DBI Dynamic Attributes</A></H2>
  697. <P>These attributes are always associated with the last handle used.</P>
  698. <P>Where an attribute is equivalent to a method call, then refer to
  699. the method call for all related documentation.</P>
  700. <P><STRONG>Warning:</STRONG> these attributes are provided as a convenience but they
  701. do have limitations. Specifically, because they are associated with
  702. the last handle used, they should only be used <EM>immediately</EM> after
  703. calling the method which 'sets' them. They have a 'short lifespan'.</P>
  704. <P>If in any doubt, use the corresponding method call.</P>
  705. <DL>
  706. <DT><STRONG><A NAME="item_%24DBI%3A%3Aerr"><STRONG>$DBI::err</STRONG></A></STRONG><BR>
  707. <DD>
  708. Equivalent to $h->err.
  709. <P></P>
  710. <DT><STRONG><A NAME="item_%24DBI%3A%3Aerrstr"><STRONG>$DBI::errstr</STRONG></A></STRONG><BR>
  711. <DD>
  712. Equivalent to $h->errstr.
  713. <P></P>
  714. <DT><STRONG><A NAME="item_%24DBI%3A%3Astate"><STRONG>$DBI::state</STRONG></A></STRONG><BR>
  715. <DD>
  716. Equivalent to $h->state.
  717. <P></P>
  718. <DT><STRONG><A NAME="item_%24DBI%3A%3Arows"><STRONG>$DBI::rows</STRONG></A></STRONG><BR>
  719. <DD>
  720. Equivalent to $h->rows. Please refer to the <A HREF="#rows">rows</A> method documentation.
  721. <P></P></DL>
  722. <P>
  723. <HR>
  724. <H1><A NAME="methods common to all handles">METHODS COMMON TO ALL HANDLES</A></H1>
  725. <DL>
  726. <DT><STRONG><A NAME="item_err"><STRONG>err</STRONG></A></STRONG><BR>
  727. <DD>
  728. <PRE>
  729.   $rv = $h->err;</PRE>
  730. <P>Returns the <EM>native</EM> database engine error code from the last driver
  731. function called. The code is typically an integer but you should not
  732. assume that.</P>
  733. <P>If you need to test for individual errors <EM>and</EM> have your program be
  734. portable to different database engines, then you'll need to determine
  735. what the corresponding error codes are for all those engines and test for
  736. all of them.</P>
  737. <DT><STRONG><A NAME="item_errstr"><STRONG>errstr</STRONG></A></STRONG><BR>
  738. <DD>
  739. <PRE>
  740.   $str = $h->errstr;</PRE>
  741. <P>Returns the native database engine error message from the last driver
  742. function called.</P>
  743. <DT><STRONG><A NAME="item_state"><STRONG>state</STRONG></A></STRONG><BR>
  744. <DD>
  745. <PRE>
  746.   $str = $h->state;</PRE>
  747. <P>Returns an error code in the standard SQLSTATE five character format.
  748. Note that the specific success code <CODE>00000</CODE> is translated to <CODE>0</CODE>
  749. (false). If the driver does not support SQLSTATE, and most don't,
  750. then state will return <CODE>S1000</CODE> (General Error) for all errors.</P>
  751. <DT><STRONG><STRONG>trace</STRONG></STRONG><BR>
  752. <DD>
  753. <PRE>
  754.   $h->trace($trace_level);
  755.   $h->trace($trace_level, $trace_filename);</PRE>
  756. <P>DBI trace information can be enabled for a specific handle (and any
  757. future children of that handle) by setting the trace level using the
  758. trace method.</P>
  759. <P>Trace level 1 is best for a simple overview of what's happening.
  760. Trace level 2 is a good choice for general purpose tracing.  Levels 3
  761. and above (up to 9) are best reserved for use when investigating a
  762. specific problem and you need to see 'inside' the driver and DBI.
  763. Use $trace_level 0 to disable the trace.</P>
  764. <P>The trace output is detailed and typically <EM>very</EM> useful. Much of the
  765. trace output is formatted using the <A HREF="#neat">neat</A> function and thus strings
  766. in the trace output may be edited and truncated by it.</P>
  767. <P>Initially trace output is written to STDERR.  If $trace_filename is
  768. specified then the file is opened in append mode and <EM>all</EM> trace
  769. output (including that from other handles) is redirected to that file.
  770. Further calls to trace without a $trace_filename do not alter where
  771. the trace output is sent. If $trace_filename is undefined then
  772. trace output is sent to STDERR and the previous trace file closed.</P>
  773. <P>See also the DBI-><A HREF="#item_trace"><CODE>trace()</CODE></A> method and <A HREF="#debugging">DEBUGGING</A> for information
  774. about the DBI_TRACE environment variable.</P>
  775. <DT><STRONG><A NAME="item_trace_msg"><STRONG>trace_msg</STRONG></A></STRONG><BR>
  776. <DD>
  777. <PRE>
  778.   $h->trace_msg($message_text);
  779.   $h->trace_msg($message_text, $min_level);</PRE>
  780. <P>Writes $message_text to trace file <EM>if</EM> trace is enabled for $h or
  781. for the DBI as a whole. Can also be called as DBI->trace_msg($msg).
  782. See <A HREF="#trace">trace</A>.</P>
  783. <P>If $min_level is defined then the message is output only if the trace
  784. level is equal to or greater than that level. $min_level defaults to 1.</P>
  785. <DT><STRONG><A NAME="item_func"><STRONG>func</STRONG></A></STRONG><BR>
  786. <DD>
  787. <PRE>
  788.   $h->func(@func_arguments, $func_name);</PRE>
  789. <P>The func method can be used to call private non-standard and
  790. non-portable methods implemented by the driver. Note that the function
  791. name is given as the <EM>last</EM> argument.</P>
  792. <P>This method is not directly related to calling stored procedures.
  793. Calling stored procedures is currently not defined by the DBI.
  794. Some drivers, such as DBD::Oracle, support it in non-portable ways.
  795. See driver documentation for more details.</P>
  796. </DL>
  797. <P>
  798. <HR>
  799. <H1><A NAME="attributes common to all handles">ATTRIBUTES COMMON TO ALL HANDLES</A></H1>
  800. <P>These attributes are common to all types of DBI handles.</P>
  801. <P>Some attributes are inherited by <EM>child</EM> handles. That is, the value
  802. of an inherited attribute in a newly created statement handle is the
  803. same as the value in the parent database handle. Changes to attributes
  804. in the new statement handle do not affect the parent database handle
  805. and changes to the database handle do not affect <EM>existing</EM> statement
  806. handles, only future ones.</P>
  807. <P>Attempting to set or get the value of an unknown attribute is fatal,
  808. except for private driver specific attributes (which all have names
  809. starting with a lowercase letter).</P>
  810. <P>Example:</P>
  811. <PRE>
  812.   $h->{AttributeName} = ...;    # set/write
  813.   ... = $h->{AttributeName};    # get/read</PRE>
  814. <DL>
  815. <DT><STRONG><A NAME="item_Warn"><STRONG>Warn</STRONG> (boolean, inherited)</A></STRONG><BR>
  816. <DD>
  817. Enables useful warnings for certain bad practices. Enabled by default. Some
  818. emulation layers, especially those for perl4 interfaces, disable warnings.
  819. Since warnings are generated using the perl <A HREF="../../lib/Pod/perlfunc.html#item_warn"><CODE>warn()</CODE></A> function they can be
  820. intercepted using the perl $SIG{__WARN__} hook.
  821. <P></P>
  822. <DT><STRONG><A NAME="item_Active"><STRONG>Active</STRONG> (boolean, read-only)</A></STRONG><BR>
  823. <DD>
  824. True if the handle object is 'active'. This is rarely used in
  825. applications. The exact meaning of active is somewhat vague at the
  826. moment. For a database handle it typically means that the handle is
  827. connected to a database ($dbh->disconnect should set Active off).  For
  828. a statement handle it <EM>typically</EM> means that the handle is a select
  829. that may have more data to fetch ($dbh->finish or fetching all the data
  830. should set Active off).
  831. <P></P>
  832. <DT><STRONG><A NAME="item_Kids"><STRONG>Kids</STRONG> (integer, read-only)</A></STRONG><BR>
  833. <DD>
  834. For a driver handle, Kids is the number of currently existing database
  835. handles that were created from that driver handle.  For a database
  836. handle, Kids is the number of currently existing statement handles that
  837. were created from that database handle.
  838. <P></P>
  839. <DT><STRONG><A NAME="item_ActiveKids"><STRONG>ActiveKids</STRONG> (integer, read-only)</A></STRONG><BR>
  840. <DD>
  841. Like Kids (above), but only counting those that are Active (as above).
  842. <P></P>
  843. <DT><STRONG><A NAME="item_CachedKids"><STRONG>CachedKids</STRONG> (hash ref)</A></STRONG><BR>
  844. <DD>
  845. For a database handle, returns a reference to the cache (hash) of
  846. statement handles created by the <A HREF="#prepare_cached">prepare_cached</A> method.  For a
  847. driver handle, it would return a reference to the cache (hash) of
  848. statement handles created by the <A HREF="#connect_cached">connect_cached</A> method.
  849. <P></P>
  850. <DT><STRONG><A NAME="item_CompatMode"><STRONG>CompatMode</STRONG> (boolean, inherited)</A></STRONG><BR>
  851. <DD>
  852. Used by emulation layers (such as Oraperl) to enable compatible behaviour
  853. in the underlying driver (e.g., DBD::Oracle) for this handle. Not normally
  854. set by application code.
  855. <P></P>
  856. <DT><STRONG><A NAME="item_InactiveDestroy"><STRONG>InactiveDestroy</STRONG> (boolean)</A></STRONG><BR>
  857. <DD>
  858. This attribute can be used to disable the database related effect of
  859. DESTROY'ing a handle (which would normally close a prepared statement
  860. or disconnect from the database etc). It is specifically designed for
  861. use in UNIX applications which 'fork' child processes. Either the
  862. parent or the child process, but not both, should set InactiveDestroy
  863. on all their handles. For a database handle, this attribute does not
  864. disable an <EM>explicit</EM> call to the disconnect method, only the implicit
  865. call from DESTROY.
  866. <P></P>
  867. <DT><STRONG><A NAME="item_PrintError"><STRONG>PrintError</STRONG> (boolean, inherited)</A></STRONG><BR>
  868. <DD>
  869. This attribute can be used to force errors to generate warnings (using
  870. warn) in addition to returning error codes in the normal way.  When set
  871. on, any method which results in an error occuring will cause the DBI to
  872. effectively do a warn(``$class $method failed: $DBI::errstr'') where $class
  873. is the driver class and $method is the name of the method which failed. E.g.,
  874. <PRE>
  875.   DBD::Oracle::db prepare failed: ... error text here ...</PRE>
  876. <P>By default DBI->connect sets PrintError on (except for old-style connect
  877. usage, see <A HREF="#connect">connect</A> for more details).</P>
  878. <P>If desired, the warnings can be caught and processed using a $SIG{__WARN__}
  879. handler or modules like CGI::Carp and CGI::ErrorWrap.</P>
  880. <P></P>
  881. <DT><STRONG><A NAME="item_RaiseError"><STRONG>RaiseError</STRONG> (boolean, inherited)</A></STRONG><BR>
  882. <DD>
  883. This attribute can be used to force errors to raise exceptions rather
  884. than simply return error codes in the normal way. It defaults to off.
  885. When set on, any method which results in an error occuring will cause
  886. the DBI to effectively do a die(``$class $method failed: $DBI::errstr'')
  887. where $class is the driver class and $method is the name of the method
  888. which failed. E.g.,
  889. <PRE>
  890.   DBD::Oracle::db prepare failed: ... error text here ...</PRE>
  891. <P>If PrintError is also on then the PrintError is done before the
  892. RaiseError unless no __DIE__ handler has been defined, in which case
  893. PrintError is skipped since the die will print the message.</P>
  894. <P>If you want to temporarily turn RaiseError off (inside a library function
  895. that is likely to fail for example), the recommended way is like this:</P>
  896. <PRE>
  897.   {
  898.     local $h->{RaiseError} = 0 if $h->{RaiseError};
  899.     ...
  900.   }</PRE>
  901. <P>The original value will automatically and reliably be restored by perl
  902. regardless of how the block is exited. The <CODE>... if $h-</CODE>{RaiseError}> is
  903. optional but makes the code slightly faster in the common case.
  904. The same logic applies to other attributes, including RaiseError.</P>
  905. <P><STRONG>Sadly this doesn't work</STRONG> for perl versions upto and including 5.004_04.
  906. For backwards compatibility could just use <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval { ... }</CODE></A> instead.</P>
  907. <P></P>
  908. <DT><STRONG><A NAME="item_ChopBlanks"><STRONG>ChopBlanks</STRONG> (boolean, inherited)</A></STRONG><BR>
  909. <DD>
  910. This attribute can be used to control the trimming of trailing space
  911. characters from <EM>fixed width</EM> character (CHAR) fields. No other field
  912. types are affected, even where field values have trailing spaces.
  913. <P>The default is false (it is possible that that may change).
  914. Applications that need specific behaviour should set the attribute as
  915. needed. Emulation interfaces should set the attribute to match the
  916. behaviour of the interface they are emulating.</P>
  917. <P>Drivers are not required to support this attribute but any driver which
  918. does not must arrange to return undef as the attribute value.</P>
  919. <P></P>
  920. <DT><STRONG><A NAME="item_LongReadLen"><STRONG>LongReadLen</STRONG> (unsigned integer, inherited)</A></STRONG><BR>
  921. <DD>
  922. This attribute may be used to control the maximum length of 'long'
  923. ('blob', 'memo' etc.) fields which the driver will <EM>read</EM> from the
  924. database automatically when it fetches each row of data.  The
  925. LongReadLen attribute only relates to fetching/reading long values it
  926. is <EM>not</EM> involved in inserting/updating them.
  927. <P>A value of 0 means don't automatically fetch any long data (fetch
  928. should return undef for long fields when LongReadLen is 0).</P>
  929. <P>The default is typically 0 (zero) bytes but may vary between drivers.
  930. Applications fetching long fields should set this value to slightly
  931. larger than the longest long field value which will be fetched.</P>
  932. <P>Some databases return some 'long' types encoded as pairs of hex digits.
  933. For these types LongReadLen relates to the underlying data and not the
  934. doubled-up length of the encoded string.</P>
  935. <P>Changing the value of LongReadLen for a statement handle <EM>after</EM> it's
  936. been prepare()'d <EM>will typically have no effect</EM> so it's usual to
  937. set LongReadLen on the $dbh before calling prepare.</P>
  938. <P>Note that the value used here has a direct effect on the memory used
  939. by the application, so don't be too generous. It's also a good idea
  940. to use values which are just smaller than a power of 2, e.g., 2**16-2
  941. which is 65534 bytes.</P>
  942. <P>See <A HREF="#longtruncok">LongTruncOk</A> about truncation behaviour.</P>
  943. <P></P>
  944. <DT><STRONG><A NAME="item_LongTruncOk"><STRONG>LongTruncOk</STRONG> (boolean, inherited)</A></STRONG><BR>
  945. <DD>
  946. This attribute may be used to control the effect of fetching a long
  947. field value which has been truncated (typically because it's longer
  948. than the value of the LongReadLen attribute).
  949. <P>By default LongTruncOk is false and fetching a truncated long value
  950. will cause the fetch to fail. (Applications should always take care to
  951. check for errors after a fetch loop in case an error, such as a divide
  952. by zero or long field truncation, caused the fetch to terminate
  953. prematurely.)</P>
  954. <P>If a fetch fails due to a long field truncation when LongTruncOk is
  955. false, many drivers will allow you to continue fetching further rows.</P>
  956. <P>See also <A HREF="#longreadlen">LongReadLen</A>.</P>
  957. <P></P>
  958. <DT><STRONG><A NAME="item_Taint"><STRONG>Taint</STRONG> (boolean, inherited)</A></STRONG><BR>
  959. <DD>
  960. If this attribute it set to some true value and Perl is running in
  961. taint mode (e.g., started with the <CODE>-T</CODE> option), then a) all data
  962. fetched from the database is tainted, and b) the arguments to most DBI
  963. method calls are checked for being tainted. <EM>This may change.</EM>
  964. <P>The attribute defaults to off, even if perl is in taint mode.
  965. See <A HREF="../../lib/Pod/perlsec.html">the perlsec manpage</A> for more about taint mode.  If Perl is not
  966. running in taint mode, this attribute has no effect.</P>
  967. <P>Currently only fetched data is tainted. It is likely that the results
  968. of other DBI method calls, and the value of fetched attributes, will
  969. also be tainted in future versions. That change may well break your
  970. applications unless you take great care now. If you use DBI Taint mode,
  971. please report your experience and any suggestions for changes.</P>
  972. <P></P>
  973. <DT><STRONG><A NAME="item_private_%2A"><STRONG>private_*</STRONG></A></STRONG><BR>
  974. <DD>
  975. The DBI provides a way to store extra information in a DBI handle as
  976. 'private' attributes. The DBI will allow you to store and retreive any
  977. attribute which has a name starting with 'private_'. It is <EM>strongly</EM>
  978. recommended that you use just <EM>one</EM> private attribute (e.g., use a
  979. hash ref) <EM>and</EM> give it a long and unambiguous name that includes the
  980. module or application that the attribute relates to (e.g.,
  981. 'private_YourFullModuleName_thingy').
  982. <P></P></DL>
  983. <P>
  984. <HR>
  985. <H1><A NAME="dbi database handle objects">DBI DATABASE HANDLE OBJECTS</A></H1>
  986. <P>
  987. <H2><A NAME="database handle methods">Database Handle Methods</A></H2>
  988. <DL>
  989. <DT><STRONG><A NAME="item_selectrow_array"><STRONG>selectrow_array</STRONG></A></STRONG><BR>
  990. <DD>
  991. <PRE>
  992.   @row_ary = $dbh->selectrow_array($statement);
  993.   @row_ary = $dbh->selectrow_array($statement, \%attr);
  994.   @row_ary = $dbh->selectrow_array($statement, \%attr, @bind_values);</PRE>
  995. <P>This utility method combines <A HREF="#prepare">prepare</A>, <A HREF="#execute">execute</A> and
  996. <A HREF="#fetchrow_array">fetchrow_array</A> into a single call. If called in a list context it
  997. returns the first row of data from the statement. If called in a scalar
  998. context it returns the first field of the first row. The $statement
  999. parameter can be a previously prepared statement handle in which case
  1000. the prepare is skipped.</P>
  1001. <P>If any method fails, and <A HREF="#raiseerror">RaiseError</A> is not set, selectrow_array
  1002. will return an empty list (or undef in scalar context).</P>
  1003. <DT><STRONG><A NAME="item_selectall_arrayref"><STRONG>selectall_arrayref</STRONG></A></STRONG><BR>
  1004. <DD>
  1005. <PRE>
  1006.   $ary_ref = $dbh->selectall_arrayref($statement);
  1007.   $ary_ref = $dbh->selectall_arrayref($statement, \%attr);
  1008.   $ary_ref = $dbh->selectall_arrayref($statement, \%attr, @bind_values);</PRE>
  1009. <P>This utility method combines <A HREF="#prepare">prepare</A>, <A HREF="#execute">execute</A> and
  1010. <A HREF="#fetchall_arrayref">fetchall_arrayref</A> into a single call. It returns a reference to an
  1011. array containing references to arrays for each row of data fetched.</P>
  1012. <P>The $statement parameter can be a previously prepared statement handle
  1013. in which case the prepare is skipped.</P>
  1014. <P>If any method except fetch fails, and <A HREF="#raiseerror">RaiseError</A> is not set,
  1015. selectall_arrayref will return undef.  If fetch fails, and
  1016. <A HREF="#raiseerror">RaiseError</A> is not set, then it will return with whatever data it
  1017. has fetched thus far.</P>
  1018. <DT><STRONG><A NAME="item_selectcol_arrayref"><STRONG>selectcol_arrayref</STRONG></A></STRONG><BR>
  1019. <DD>
  1020. <PRE>
  1021.   $ary_ref = $dbh->selectcol_arrayref($statement);
  1022.   $ary_ref = $dbh->selectcol_arrayref($statement, \%attr);
  1023.   $ary_ref = $dbh->selectcol_arrayref($statement, \%attr, @bind_values);</PRE>
  1024. <P>This utility method combines <A HREF="#prepare">prepare</A>, <A HREF="#execute">execute</A> and fetching one
  1025. column from all the rows, into a single call. It returns a reference to
  1026. an array containing the values of the first column from each row.</P>
  1027. <P>The $statement parameter can be a previously prepared statement handle
  1028. in which case the prepare is skipped.</P>
  1029. <P>If any method except fetch fails, and <A HREF="#raiseerror">RaiseError</A> is not set,
  1030. selectall_arrayref will return undef.  If fetch fails, and
  1031. <A HREF="#raiseerror">RaiseError</A> is not set, then it will return with whatever data it
  1032. has fetched thus far.</P>
  1033. <DT><STRONG><A NAME="item_prepare"><STRONG>prepare</STRONG></A></STRONG><BR>
  1034. <DD>
  1035. <PRE>
  1036.   $sth = $dbh->prepare($statement)          || die $dbh->errstr;
  1037.   $sth = $dbh->prepare($statement, \%attr)  || die $dbh->errstr;</PRE>
  1038. <P>Prepares a <EM>single</EM> statement for later execution by the database
  1039. engine and returns a reference to a statement handle object.</P>
  1040. <P>The returned statement handle can be used to get attributes of the
  1041. statement and invoke the <A HREF="#execute">execute</A> method. See <A HREF="#statement handle methods">Statement Handle Methods</A>.</P>
  1042. <P>Note that prepare should never execute a statement, even if it is not a
  1043. select statement, it only <EM>prepares</EM> it for execution. (Having said that,
  1044. some drivers, notably Oracle 7, will execute data definition statements
  1045. such as create/drop table when they are prepared. In practice this is
  1046. rarely a problem.)</P>
  1047. <P>Drivers for engines which don't have the concept of preparing a
  1048. statement will typically just store the statement in the returned
  1049. handle and process it when $sth->execute is called. Such drivers are
  1050. likely to be unable to give much useful information about the
  1051. statement, such as $sth->{NUM_OF_FIELDS}, until after $sth->execute
  1052. has been called. Portable applications should take this into account.</P>
  1053. <P>In general DBI drivers do <EM>not</EM> parse the contents of the statement
  1054. (other than simply counting any <A HREF="#placeholders">Placeholders</A>). The statement is
  1055. passed directly to the database engine (sometimes known as pass-thru
  1056. mode). This has advantages and disadvantages. On the plus side, you can
  1057. access all the functionality of the engine being used. On the downside,
  1058. you're limited if using a simple engine and need to take extra care if
  1059. attempting to write applications to be portable between engines.</P>
  1060. <P>Portable applications should not assume that a new statement can be
  1061. prepared and/or executed while still fetching results from a previous
  1062. statement.</P>
  1063. <P>Some command-line SQL tools use statement terminators, like a semicolon,
  1064. to indicate the end of a statement. Such terminators should not be
  1065. used with the DBI.</P>
  1066. <DT><STRONG><A NAME="item_prepare_cached"><STRONG>prepare_cached</STRONG></A></STRONG><BR>
  1067. <DD>
  1068. <PRE>
  1069.   $sth = $dbh->prepare_cached($statement)
  1070.   $sth = $dbh->prepare_cached($statement, \%attr)
  1071.   $sth = $dbh->prepare_cached($statement, \%attr, $allow_active)</PRE>
  1072. <P>Like <A HREF="#prepare">prepare</A> except that the statement handle returned will be stored
  1073. in a hash associated with the $dbh. If another call is made to prepare_cached
  1074. with the <EM>same parameter values</EM> then the corresponding cached $sth
  1075. will be returned without contacting the database server.</P>
  1076. <P>This caching can be useful in some applications but it can also cause
  1077. problems and should be used with care. A warning will be generated if
  1078. the cached $sth being returned is active (i.e., is a select that may
  1079. still have data to be fetched) unless $allow_active is true.</P>
  1080. <P>The cache can be accessed (and cleared) via the <A HREF="#cachedkids">CachedKids</A> attribute.</P>
  1081. <DT><STRONG><A NAME="item_do"><STRONG>do</STRONG></A></STRONG><BR>
  1082. <DD>
  1083. <PRE>
  1084.   $rc  = $dbh->do($statement)           || die $dbh->errstr;
  1085.   $rc  = $dbh->do($statement, \%attr)   || die $dbh->errstr;
  1086.   $rv  = $dbh->do($statement, \%attr, @bind_values) || ...</PRE>
  1087. <P>Prepare and execute a single statement. Returns the number of rows
  1088. affected (-1 if not known or not available) or undef on error.</P>
  1089. <P>This method is typically most useful for <EM>non-select</EM> statements which
  1090. either cannot be prepared in advance (due to a limitation of the
  1091. driver) or which do not need to be executed repeatedly. It should not
  1092. be used for select statements because it does not return a statement
  1093. handle so you can't fetch any data.</P>
  1094. <P>The default do method is logically similar to:</P>
  1095. <PRE>
  1096.   sub do {
  1097.       my($dbh, $statement, $attr, @bind_values) = @_;
  1098.       my $sth = $dbh->prepare($statement, $attr) or return undef;
  1099.       $sth->execute(@bind_values) or return undef;
  1100.       my $rows = $sth->rows;
  1101.       ($rows == 0) ? "0E0" : $rows; # always return true if no error
  1102.   }</PRE>
  1103. <P>Example:</P>
  1104. <PRE>
  1105.   my $rows_deleted = $dbh->do(q{
  1106.       delete from table
  1107.       where status = ?
  1108.   }, undef, 'DONE') || die $dbh->errstr;</PRE>
  1109. <P>Using placeholders and <CODE>@bind_values</CODE> with the <A HREF="#item_do"><CODE>do</CODE></A> method can be
  1110. useful because it avoids the need to correctly quote any variables
  1111. in the $statement.</P>
  1112. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_q"><CODE>q{...}</CODE></A> style quoting used in this example avoids clashing with
  1113. quotes that may be used in the SQL statement. Use the double-quote like
  1114. <A HREF="../../lib/Pod/perlfunc.html#item_qq"><CODE>qq{...}</CODE></A> operator if you want to interpolate variables into the string.
  1115. See <A HREF="../../lib/Pod/perlop.html#quote and quotelike operators">Quote and Quote-like Operators in the perlop manpage</A> for more details.</P>
  1116. <DT><STRONG><A NAME="item_commit"><STRONG>commit</STRONG></A></STRONG><BR>
  1117. <DD>
  1118. <PRE>
  1119.   $rc  = $dbh->commit     || die $dbh->errstr;</PRE>
  1120. <P>Commit (make permanent) the most recent series of database changes
  1121. if the database supports transactions.</P>
  1122. <P>If the database supports transactions and AutoCommit is on then the
  1123. commit should issue a ``commit ineffective with AutoCommit'' warning.</P>
  1124. <P>See also <A HREF="#transactions">Transactions</A>.</P>
  1125. <DT><STRONG><A NAME="item_rollback"><STRONG>rollback</STRONG></A></STRONG><BR>
  1126. <DD>
  1127. <PRE>
  1128.   $rc  = $dbh->rollback   || die $dbh->errstr;</PRE>
  1129. <P>Roll-back (undo) the most recent series of uncommitted database
  1130. changes if the database supports transactions.</P>
  1131. <P>If the database supports transactions and AutoCommit is on then the
  1132. rollback should issue a ``rollback ineffective with AutoCommit'' warning.</P>
  1133. <P>See also <A HREF="#transactions">Transactions</A>.</P>
  1134. <DT><STRONG><A NAME="item_disconnect"><STRONG>disconnect</STRONG></A></STRONG><BR>
  1135. <DD>
  1136. <PRE>
  1137.   $rc = $dbh->disconnect  || warn $dbh->errstr;</PRE>
  1138. <P>Disconnects the database from the database handle. Typically only used
  1139. before exiting the program. The handle is of little use after disconnecting.</P>
  1140. <P>The transaction behaviour of the disconnect method is, sadly,
  1141. undefined.  Some database systems (such as Oracle and Ingres) will
  1142. automatically commit any outstanding changes, but others (such as
  1143. Informix) will rollback any outstanding changes.  Applications not
  1144. using AutoCommit should explicitly call commit or rollback before
  1145. calling disconnect.</P>
  1146. <P>The database is automatically disconnected (by the DESTROY method) if
  1147. still connected when there are no longer any references to the handle.
  1148. The DESTROY method for each driver <EM>should</EM> implicitly call rollback to
  1149. undo any uncommitted changes. This is <EM>vital</EM> behaviour to ensure that
  1150. incomplete transactions don't get committed simply because Perl calls
  1151. DESTROY on every object before exiting. Also, do not rely on the order
  1152. of object destruction during 'global destruction', it is undefined.</P>
  1153. <P>Generally if you want your changes to be commited or rolled back when
  1154. you disconnect then you should explicitly call <A HREF="#commit">commit</A> or <A HREF="#rollback">rollback</A>
  1155. before disconnecting.</P>
  1156. <P>If you disconnect from a database while you still have active statement
  1157. handles you will get a warning. The statement handles should either be
  1158. cleared (destroyed) before disconnecting or the finish method called on
  1159. each one.</P>
  1160. <DT><STRONG><A NAME="item_ping"><STRONG>ping</STRONG></A></STRONG><BR>
  1161. <DD>
  1162. <PRE>
  1163.   $rc = $dbh->ping;</PRE>
  1164. <P>Attempts to determine, in a reasonably efficient way, if the database
  1165. server is still running and the connection to it is still working.
  1166. Individual drivers should implement this function in the most suitable
  1167. manner for their database engine.</P>
  1168. <P>The default implementation currently always returns true without
  1169. actually doing anything. Actually it returns ``<CODE>0E0</CODE>'' which is true
  1170. but zero. That way you can tell if the return value is genuine or just
  1171. the default.</P>
  1172. <P>Very few applications would have any use for this method. See the
  1173. specialist Apache::DBI module for one example usage.</P>
  1174. <DT><STRONG><A NAME="item_table_info_%2ANEW%2A"><STRONG>table_info</STRONG> *NEW*</A></STRONG><BR>
  1175. <DD>
  1176. <STRONG>Warning:</STRONG> This method is experimental and may change or disappear.
  1177. <PRE>
  1178.   $sth = $dbh->table_info;</PRE>
  1179. <P>Returns an active statement handle that can be used to fetch
  1180. information about tables and views that exist in the database.</P>
  1181. <P>The handle has at least the following fields in the order show
  1182. below. Other fields, after these, may also be present.</P>
  1183. <P><STRONG>TABLE_CAT</STRONG>: Table catalogue identifier. NULL (undef) if not
  1184. applicable to data source (usually the case). Empty if not applicable
  1185. to the table.</P>
  1186. <P><STRONG>TABLE_SCHEM</STRONG>: The name of the schema containing the TABLE_NAME value.
  1187. NULL (undef) if not applicable to data source. Empty if not applicable
  1188. to the table.</P>
  1189. <P><STRONG>TABLE_NAME</STRONG>: Name of the table (or view, synonym, etc).</P>
  1190. <P><STRONG>TABLE_TYPE</STRONG>: One of the following: ``TABLE'', ``VIEW'', ``SYSTEM TABLE'',
  1191. ``GLOBAL TEMPORARY'', ``LOCAL TEMPORARY'', ``ALIAS'', ``SYNONYM'' or a data
  1192. source specific type identifier.</P>
  1193. <P><STRONG>REMARKS</STRONG>: A description of the table. May be NULL (undef).</P>
  1194. <P>Note that table_info might not return records for all tables.
  1195. Applications can use any valid table regardless of whether it's
  1196. returned by table_info.  See also <A HREF="#tables">tables</A>.</P>
  1197. <P>For more detailed information about the fields and their meanings,
  1198. you can refer to:</P>
  1199. <PRE>
  1200.   <A HREF="http://msdn.microsoft.com/library/sdkdoc/dasdk/odbc/odbcsqltables.htm">http://msdn.microsoft.com/library/sdkdoc/dasdk/odbc/odbcsqltables.htm</A></PRE>
  1201. <P></P>
  1202. <DT><STRONG><A NAME="item_tables_%2ANEW%2A"><STRONG>tables</STRONG> *NEW*</A></STRONG><BR>
  1203. <DD>
  1204. <STRONG>Warning:</STRONG> This method is experimental and may change or disappear.
  1205. <PRE>
  1206.   @names = $dbh->tables;</PRE>
  1207. <P>Returns a list of table and view names.  This list should include all
  1208. tables which can be used in a select statement without further
  1209. qualification. That typically means all the tables and views owned by
  1210. the current user and all those accessible via public synonyms/aliases
  1211. (excluding non-metadata system tables and views).</P>
  1212. <P>Note that table_info might not return records for all tables.
  1213. Applications can use any valid table regardless of whether it's
  1214. returned by tables.  See also <A HREF="#table_info">table_info</A>.</P>
  1215. <P></P>
  1216. <DT><STRONG><A NAME="item_type_info_all_%2ANEW%2A"><STRONG>type_info_all</STRONG> *NEW*</A></STRONG><BR>
  1217. <DD>
  1218. <STRONG>Warning:</STRONG> This method is experimental and may change or disappear.
  1219. <PRE>
  1220.   $type_info_all = $dbh->type_info_all;</PRE>
  1221. <P>Returns a reference to an array which holds information about each data
  1222. type variant supported by the database and driver. The array and its
  1223. contents should be treated as read-only.</P>
  1224. <P>The first item is a reference to a hash of Name => Index pairs. The
  1225. following items are references to arrays, one per supported data type
  1226. variant. The leading hash defines the names and order of the fields
  1227. within the following list of arrays. For example:</P>
  1228. <PRE>
  1229.   $type_info_all = [
  1230.     {   TYPE_NAME         => 0,
  1231.         DATA_TYPE         => 1,
  1232.         COLUMN_SIZE       => 2,     # was PRECISION originally
  1233.         LITERAL_PREFIX    => 3,
  1234.         LITERAL_SUFFIX    => 4,
  1235.         CREATE_PARAMS     => 5,
  1236.         NULLABLE          => 6,
  1237.         CASE_SENSITIVE    => 7,
  1238.         SEARCHABLE        => 8,
  1239.         UNSIGNED_ATTRIBUTE=> 9,
  1240.         FIXED_PREC_SCALE  => 10,    # was MONEY originally
  1241.         AUTO_UNIQUE_VALUE => 11,    # was AUTO_INCREMENT originally
  1242.         LOCAL_TYPE_NAME   => 12,
  1243.         MINIMUM_SCALE     => 13,
  1244.         MAXIMUM_SCALE     => 14,
  1245.         NUM_PREC_RADIX    => 15,
  1246.     },
  1247.     [ 'VARCHAR', SQL_VARCHAR,
  1248.         undef, "'","'", undef,0, 1,1,0,0,0,undef,1,255, undef
  1249.     ],
  1250.     [ 'INTEGER', SQL_INTEGER,
  1251.         undef,  "", "", undef,0, 0,1,0,0,0,undef,0,  0, 10
  1252.     ],
  1253.   ];</PRE>
  1254. <P>Note that more than one row may have the same value in the DATA_TYPE
  1255. field if there are different ways to spell the type name and/or there
  1256. are varients of the type with different attributes (e.g., with and
  1257. without AUTO_UNIQUE_VALUE set, with and without UNSIGNED_ATTRIBUTE etc).</P>
  1258. <P>The rows are ordered by DATA_TYPE first and then by how closely each
  1259. type maps to the corresponding ODBC SQL data type, closest first.</P>
  1260. <P>The meaning of the fields is described in the documentation for
  1261. the <A HREF="#type_info">type_info</A> method. The index values shown above (e.g.,
  1262. NULLABLE => 6) are for illustration only. Drivers may define the
  1263. fields with a different order.</P>
  1264. <P>This method is not normally used directly. The <A HREF="#type_info">type_info</A> method
  1265. provides a more useful interface to the data.</P>
  1266. <P></P>
  1267. <DT><STRONG><A NAME="item_type_info_%2ANEW%2A"><STRONG>type_info</STRONG> *NEW*</A></STRONG><BR>
  1268. <DD>
  1269. <STRONG>Warning:</STRONG> This method is experimental and may change or disappear.
  1270. <PRE>
  1271.   @type_info = $dbh->type_info($data_type);</PRE>
  1272. <P>Returns a list of hash references holding information about one or more
  1273. variants of $data_type (or a type <EM>reasonably compatible</EM> with it).</P>
  1274. <P>If $data_type is SQL_ALL_TYPES then the list will contain hashes for
  1275. all data type variants supported by the database and driver.</P>
  1276. <P>The list is ordered by DATA_TYPE first and then by how closely each
  1277. type maps to the corresponding ODBC SQL data type, closest first.</P>
  1278. <P>The keys of the hash follow the same letter case conventions as the
  1279. rest of the DBI (see <A HREF="#naming conventions and name space">Naming Conventions and Name Space</A>). The
  1280. following items should exist:</P>
  1281. <DL>
  1282. <DT><STRONG><A NAME="item_TYPE_NAME">TYPE_NAME (string)</A></STRONG><BR>
  1283. <DD>
  1284. Data type name for use in CREATE TABLE statements etc.
  1285. <P></P>
  1286. <DT><STRONG><A NAME="item_DATA_TYPE">DATA_TYPE (integer)</A></STRONG><BR>
  1287. <DD>
  1288. SQL data type number.
  1289. <P></P>
  1290. <DT><STRONG><A NAME="item_COLUMN_SIZE">COLUMN_SIZE (integer)</A></STRONG><BR>
  1291. <DD>
  1292. For numeric types this is either the total number of digits (if the
  1293. NUM_PREC_RADIX value is 10) or the total number of bits allowed in the
  1294. column (if NUM_PREC_RADIX is 2).
  1295. <P>For string types this is the maximum size of the string in bytes.</P>
  1296. <P>For date and interval types this is the maximum number of characters
  1297. needed to display the value.</P>
  1298. <P></P>
  1299. <DT><STRONG><A NAME="item_LITERAL_PREFIX">LITERAL_PREFIX (string)</A></STRONG><BR>
  1300. <DD>
  1301. Characters used to prefix a literal. Typically ``''' for characters,
  1302. possibly ``0x'' for binary values passed as hex.  NULL (undef) is
  1303. returned for data types where this is not applicable.
  1304. <P></P>
  1305. <DT><STRONG><A NAME="item_LITERAL_SUFFIX">LITERAL_SUFFIX (string)</A></STRONG><BR>
  1306. <DD>
  1307. Characters used to suffix a literal. Typically ``''' for characters.
  1308. NULL (undef) is returned for data types where this is not applicable.
  1309. <P></P>
  1310. <DT><STRONG><A NAME="item_CREATE_PARAMS">CREATE_PARAMS (string)</A></STRONG><BR>
  1311. <DD>
  1312. Parameters for a data type definition. For example, CREATE_PARAMS for a
  1313. DECIMAL would be ``precision,scale''. For a VARCHAR it would be ``max length''.
  1314. NULL (undef) is returned for data types where this is not applicable.
  1315. <P></P>
  1316. <DT><STRONG><A NAME="item_NULLABLE">NULLABLE (integer)</A></STRONG><BR>
  1317. <DD>
  1318. Indicates whether the data type accepts a NULL value:
  1319. 0 = no, 1 = yes, 2 = unknown.
  1320. <P></P>
  1321. <DT><STRONG><A NAME="item_CASE_SENSITIVE">CASE_SENSITIVE (boolean)</A></STRONG><BR>
  1322. <DD>
  1323. Indicates whether the data type is case sensitive in collations and
  1324. comparisons.
  1325. <P></P>
  1326. <DT><STRONG><A NAME="item_SEARCHABLE">SEARCHABLE (integer)</A></STRONG><BR>
  1327. <DD>
  1328. Indicates how the data type can be used in a WHERE clause:
  1329. <PRE>
  1330.   0 - cannot be used in a WHERE clause
  1331.   1 - only with a LIKE predicate
  1332.   2 - all comparison operators except LIKE
  1333.   3 - can be used in a WHERE clause with any comparison operator</PRE>
  1334. <P></P>
  1335. <DT><STRONG><A NAME="item_UNSIGNED_ATTRIBUTE">UNSIGNED_ATTRIBUTE (boolean)</A></STRONG><BR>
  1336. <DD>
  1337. Indicates whether the data type is unsigned.  NULL (undef) is returned
  1338. for data types where this is not applicable.
  1339. <P></P>
  1340. <DT><STRONG><A NAME="item_FIXED_PREC_SCALE">FIXED_PREC_SCALE (boolean)</A></STRONG><BR>
  1341. <DD>
  1342. Indicates whether the data type always has the same precision and scale
  1343. (such as a money type).  NULL (undef) is returned for data types where
  1344. this is not applicable.
  1345. <P></P>
  1346. <DT><STRONG><A NAME="item_AUTO_UNIQUE_VALUE">AUTO_UNIQUE_VALUE (boolean)</A></STRONG><BR>
  1347. <DD>
  1348. Indicates whether a column of this data type is automatically set to a
  1349. unique value whenever a new row is inserted.  NULL (undef) is returned
  1350. for data types where this is not applicable.
  1351. <P></P>
  1352. <DT><STRONG><A NAME="item_LOCAL_TYPE_NAME">LOCAL_TYPE_NAME (string)</A></STRONG><BR>
  1353. <DD>
  1354. Localised version of the TYPE_NAME for use in dialogue with users.
  1355. NULL (undef) is returned if a localised name is not available (in which
  1356. case TYPE_NAME should be used).
  1357. <P></P>
  1358. <DT><STRONG><A NAME="item_MINIMUM_SCALE">MINIMUM_SCALE (integer)</A></STRONG><BR>
  1359. <DD>
  1360. The minimum scale of the data type. If a data type has a fixed scale
  1361. then MAXIMUM_SCALE holds the same value.  NULL (undef) is returned for
  1362. data types where this is not applicable.
  1363. <P></P>
  1364. <DT><STRONG><A NAME="item_MAXIMUM_SCALE">MAXIMUM_SCALE (integer)</A></STRONG><BR>
  1365. <DD>
  1366. The maximum scale of the data type. If a data type has a fixed scale
  1367. then MINIMUM_SCALE holds the same value.  NULL (undef) is returned for
  1368. data types where this is not applicable.
  1369. <P></P>
  1370. <DT><STRONG><A NAME="item_NUM_PREC_RADIX">NUM_PREC_RADIX (integer)</A></STRONG><BR>
  1371. <DD>
  1372. The radix value of the data type. For approximate numeric types this
  1373. contains the value 2 and COLUMN_SIZE holds the number of bits. For
  1374. exact numeric types this contains the value 10 and COLUMN_SIZE holds
  1375. the number of decimal digits. NULL (undef) is returned for data types
  1376. where this is not applicable.
  1377. <P></P></DL>
  1378. <P>For more detailed information about these fields and their meanings, you
  1379. can refer to:</P>
  1380. <PRE>
  1381.   <A HREF="http://msdn.microsoft.com/library/sdkdoc/dasdk/odbc/odbcsqlgettypeinfo.htm">http://msdn.microsoft.com/library/sdkdoc/dasdk/odbc/odbcsqlgettypeinfo.htm</A></PRE>
  1382. <P>The individual data types are described here:</P>
  1383. <PRE>
  1384.   <A HREF="http://msdn.microsoft.com/library/sdkdoc/dasdk/odbc/odbcsql_data_types.htm">http://msdn.microsoft.com/library/sdkdoc/dasdk/odbc/odbcsql_data_types.htm</A></PRE>
  1385. <DT><STRONG><A NAME="item_quote"><STRONG>quote</STRONG></A></STRONG><BR>
  1386. <DD>
  1387. <PRE>
  1388.   $sql = $dbh->quote($value);
  1389.   $sql = $dbh->quote($value, $data_type);</PRE>
  1390. <P>Quote a string literal for use as a literal value in an SQL statement
  1391. by <EM>escaping</EM> any special characters (such as quotation marks)
  1392. contained within the string <EM>and</EM> adding the required type of outer
  1393. quotation marks.</P>
  1394. <PRE>
  1395.   $sql = sprintf "select foo from bar where baz = %s",
  1396.                 $dbh->quote("Don't\n");</PRE>
  1397. <P>For most database types quote would return <CODE>'Don''t'</CODE> (including the
  1398. outer quotation marks).</P>
  1399. <P>An undefined $value value will be returned as the string NULL (without
  1400. quotation marks) to match how NULLs are represented in SQL.</P>
  1401. <P>If $data_type is supplied it is used to try to determine the required
  1402. quoting behaviour by using the information returned by <A HREF="#type_info">type_info</A>.
  1403. As a special case, the standard numeric types are optimised to return
  1404. $value without calling type_info.</P>
  1405. <P>Quote will probably <EM>not</EM> be able to deal with all possible input
  1406. (such as binary data or data containing newlines) and is not related in
  1407. any way with escaping or quoting shell meta-characters. There is no
  1408. need to quote values being used with <A HREF="#placeholders and bind values">Placeholders and Bind Values</A>.</P>
  1409. </DL>
  1410. <P>
  1411. <H2><A NAME="database handle attributes">Database Handle Attributes</A></H2>
  1412. <P>This section describes attributes specific to database handles.</P>
  1413. <P>Changes to these database handle attributes do not affect any other
  1414. existing or future database handles.</P>
  1415. <P>Attempting to set or get the value of an unknown attribute is fatal,
  1416. except for private driver specific attributes (which all have names
  1417. starting with a lowercase letter).</P>
  1418. <P>Example:</P>
  1419. <PRE>
  1420.   $h->{AutoCommit} = ...;       # set/write
  1421.   ... = $h->{AutoCommit};       # get/read</PRE>
  1422. <DL>
  1423. <DT><STRONG><A NAME="item_AutoCommit"><STRONG>AutoCommit</STRONG>  (boolean)</A></STRONG><BR>
  1424. <DD>
  1425. If true then database changes cannot be rolled-back (undone).  If false
  1426. then database changes automatically occur within a 'transaction' which
  1427. must either be committed or rolled-back using the commit or rollback
  1428. methods.
  1429. <P>Drivers should always default to AutoCommit mode. (An unfortunate
  1430. choice largely forced on the DBI by ODBC and JDBC conventions.)</P>
  1431. <P>Attempting to set AutoCommit to an unsupported value is a fatal error.
  1432. This is an important feature of the DBI. Applications which need
  1433. full transaction behaviour can set $dbh->{AutoCommit} = 0 (or via
  1434. <A HREF="#connect">connect</A>) without having to check the value was assigned okay.</P>
  1435. <P>For the purposes of this description we can divide databases into three
  1436. categories:</P>
  1437. <PRE>
  1438.   Database which don't support transactions at all.
  1439.   Database in which a transaction is always active.
  1440.   Database in which a transaction must be explicitly started ('BEGIN WORK').</PRE>
  1441. <P><STRONG>* Database which don't support transactions at all</STRONG></P>
  1442. <P>For these databases attempting to turn AutoCommit off is a fatal error.
  1443. Commit and rollback both issue warnings about being ineffective while
  1444. AutoCommit is in effect.</P>
  1445. <P><STRONG>* Database in which a transaction is always active</STRONG></P>
  1446. <P>These are typically mainstream commercial relational databases with
  1447. 'ANSI standard' transaction behaviour.</P>
  1448. <P>If AutoCommit is off then changes to the database won't have any
  1449. lasting effect unless <A HREF="#commit">commit</A> is called (but see also
  1450. <A HREF="#disconnect">disconnect</A>). If <A HREF="#rollback">rollback</A> is called then any changes since the
  1451. last commit are undone.</P>
  1452. <P>If AutoCommit is on then the effect is the same as if the DBI were to
  1453. have called commit automatically after every successful database
  1454. operation. In other words, calling commit or rollback explicitly while
  1455. AutoCommit is on would be ineffective because the changes would
  1456. have already been commited.</P>
  1457. <P>Changing AutoCommit from off to on should issue a <A HREF="#commit">commit</A> in most drivers.</P>
  1458. <P>Changing AutoCommit from on to off should have no immediate effect.</P>
  1459. <P>For databases which don't support a specific auto-commit mode, the
  1460. driver has to commit each statement automatically using an explicit
  1461. COMMIT after it completes successfully (and roll it back using an
  1462. explicit ROLLBACK if it fails).  The error information reported to the
  1463. application will correspond to the statement which was executed, unless
  1464. it succeeded and the commit or rollback failed.</P>
  1465. <P><STRONG>* Database in which a transaction must be explicitly started</STRONG></P>
  1466. <P>For these database the intention is to have them act like databases in
  1467. which a transaction is always active (as described above).</P>
  1468. <P>To do this the DBI driver will automatically begin a transaction when
  1469. AutoCommit is turned off (from the default on state) and will
  1470. automatically begin another transaction after a <A HREF="#commit">commit</A> or <A HREF="#rollback">rollback</A>.</P>
  1471. <P>In this way, the application does not have to treat these databases as a
  1472. special case.</P>
  1473. <P>See <A HREF="#disconnect">disconnect</A> for other important notes about transactions.</P>
  1474. <P></P>
  1475. <DT><STRONG><A NAME="item_Driver"><STRONG>Driver</STRONG>  (handle)</A></STRONG><BR>
  1476. <DD>
  1477. Holds the handle of the parent Driver. The only recommended use for this
  1478. is to find the name of the driver using
  1479. <PRE>
  1480.   $dbh->{Driver}->{Name}</PRE>
  1481. <P></P>
  1482. <DT><STRONG><A NAME="item_Name"><STRONG>Name</STRONG>  (string)</A></STRONG><BR>
  1483. <DD>
  1484. Holds the 'name' of the database. Usually (and recommended to be) the
  1485. same as the ``dbi:DriverName:...'' string used to connect to the database
  1486. but with the leading ``dbi:DriverName:'' removed.
  1487. <P></P>
  1488. <DT><STRONG><A NAME="item_RowCacheSize"><STRONG>RowCacheSize</STRONG>  (integer) *NEW*</A></STRONG><BR>
  1489. <DD>
  1490. A hint to the driver indicating the size of local row cache the
  1491. application would like the driver to use for future select statements.
  1492. If a row cache is not implemented then setting RowCacheSize is ignored
  1493. and getting the value returns undef.
  1494. <P>Some RowCacheSize values have special meaning:</P>
  1495. <PRE>
  1496.   0 - Automatically determine a reasonable cache size for each select
  1497.   1 - Disable the local row cache
  1498.  >1 - Cache this many rows
  1499.  <0 - Cache as many rows fit into this much memory for each select.</PRE>
  1500. <P>Note that large cache sizes may require very large amount of memory
  1501. (cached rows * maximum size of row) and that a large cache will cause
  1502. a longer delay for the first fetch and when the cache needs refilling.</P>
  1503. <P>See also <A HREF="#rowsincache">RowsInCache</A> statement handle attribute.</P>
  1504. <P></P></DL>
  1505. <P>
  1506. <HR>
  1507. <H1><A NAME="dbi statement handle objects">DBI STATEMENT HANDLE OBJECTS</A></H1>
  1508. <P>
  1509. <H2><A NAME="statement handle methods">Statement Handle Methods</A></H2>
  1510. <DL>
  1511. <DT><STRONG><A NAME="item_bind_param"><STRONG>bind_param</STRONG></A></STRONG><BR>
  1512. <DD>
  1513. <PRE>
  1514.   $rc = $sth->bind_param($p_num, $bind_value)  || die $sth->errstr;
  1515.   $rv = $sth->bind_param($p_num, $bind_value, \%attr)     || ...
  1516.   $rv = $sth->bind_param($p_num, $bind_value, $bind_type) || ...</PRE>
  1517. <P>The bind_param method can be used to <EM>bind</EM> (assign/associate) a value
  1518. with a <EM>placeholder</EM> embedded in the prepared statement. Placeholders
  1519. are indicated with question mark character (<CODE>?</CODE>). For example:</P>
  1520. <PRE>
  1521.   $dbh->{RaiseError} = 1;        # save having to check each method call
  1522.   $sth = $dbh->prepare("select name, age from people where name like ?");
  1523.   $sth->bind_param(1, "John%");  # placeholders are numbered from 1
  1524.   $sth->execute;
  1525.   DBI::dump_results($sth);</PRE>
  1526. <P>Note that the <CODE>?</CODE> is not enclosed in quotation marks even when the
  1527. placeholder represents a string.  Some drivers also allow <CODE>:1</CODE>, <CODE>:2</CODE>
  1528. etc and <CODE>:name</CODE> style placeholders in addition to <CODE>?</CODE> but their use
  1529. is not portable.  Undefined bind values or <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> are be used to
  1530. indicate null values.</P>
  1531. <P>Some drivers do not support placeholders.</P>
  1532. <P>With most drivers placeholders can't be used for any element of a
  1533. statement that would prevent the database server validating the
  1534. statement and creating a query execution plan for it. For example:</P>
  1535. <PRE>
  1536.   "select name, age from ?"         # wrong (will probably fail)
  1537.   "select name, ?   from people"    # wrong (but may not 'fail')</PRE>
  1538. <P>Also, placeholders can only represent single scalar values, so this
  1539. statement, for example, won't work as expected for more than one value:</P>
  1540. <PRE>
  1541.   "select name, age from people where name in (?)"    # wrong</PRE>
  1542. <P><STRONG>Data Types for Placeholders</STRONG></P>
  1543. <P>The <CODE>\%attr</CODE> parameter can be used to hint at the data type the
  1544. placeholder should have. Typically the driver is only interested in
  1545. knowing if the placeholder should be bound as a number or a string.</P>
  1546. <PRE>
  1547.   $sth->bind_param(1, $value, { TYPE => SQL_INTEGER });</PRE>
  1548. <P>As a short-cut for this common case, the data type can be passed
  1549. directly inplace of the attr hash reference. This example is
  1550. equivalent to the one above:</P>
  1551. <PRE>
  1552.   $sth->bind_param(1, $value, SQL_INTEGER);</PRE>
  1553. <P>The TYPE value indicates the <EM>standard</EM> (non-driver-specific) type for
  1554. this parameter. To specify the driver-specific type the driver <EM>may</EM>
  1555. support a driver-specific attribute, e.g., { ora_type => 97 }.  The
  1556. data type for a placeholder cannot be changed after the first
  1557. bind_param call (but it can be left unspecified, in which case it
  1558. defaults to the previous value).</P>
  1559. <P>Perl only has string and number scalar data types. All database types
  1560. that aren't numbers are bound as strings and must be in a format the
  1561. database will understand.</P>
  1562. <P>As an alternative to specifying the data type in the bind_param call,
  1563. you can let the driver pass the value as the default type (VARCHAR)
  1564. then use an SQL function to convert the type within the statement.
  1565. E.g.,</P>
  1566. <PRE>
  1567.   insert into price(code, price) values (?, convert(money,?))</PRE>
  1568. <P>The convert function used here is just an example. The actual function
  1569. and syntax will vary between different databases (and so is obviously
  1570. non-portable).</P>
  1571. <P>See also <A HREF="#placeholders and bind values">Placeholders and Bind Values</A> for more information.</P>
  1572. <DT><STRONG><A NAME="item_bind_param_inout"><STRONG>bind_param_inout</STRONG></A></STRONG><BR>
  1573. <DD>
  1574. <PRE>
  1575.   $rc = $sth->bind_param_inout($p_num, \$bind_value, $max_len)  || die $sth->errstr;
  1576.   $rv = $sth->bind_param_inout($p_num, \$bind_value, $max_len, \%attr)     || ...
  1577.   $rv = $sth->bind_param_inout($p_num, \$bind_value, $max_len, $bind_type) || ...</PRE>
  1578. <P>This method acts like <A HREF="#bind_param">bind_param</A> but also enables values to be
  1579. <EM>output from</EM> (updated by) the statement. The statement is typically
  1580. a call to a stored procedure. The $bind_value must be passed as a
  1581. <EM>reference</EM> to the actual value to be used.</P>
  1582. <P>Note that unlike <A HREF="#bind_param">bind_param</A>, the $bind_value variable is <EM>not</EM>
  1583. read when bind_param_inout is called. Instead, the value in the
  1584. variable is read at the time <A HREF="#execute">execute</A> is called.</P>
  1585. <P>The additional $max_len parameter specifies the minimum amount of
  1586. memory to allocate to $bind_value for the new value. If the value is too
  1587. big to fit then the execute should fail. If unsure what value to use,
  1588. pick a generous length larger than the longest value that would ever be
  1589. returned.  The only cost of using a very large value is memory.</P>
  1590. <P>It is expected that few drivers will support this method. The only
  1591. driver currently known to do so is DBD::Oracle (DBD::ODBC may support
  1592. it in a future release). Therefore it should <EM>not</EM> be used for database
  1593. independent applications.</P>
  1594. <P>Undefined values or <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> are be used to indicate null values.
  1595. See also <A HREF="#placeholders and bind values">Placeholders and Bind Values</A> for more information.</P>
  1596. <DT><STRONG><A NAME="item_execute"><STRONG>execute</STRONG></A></STRONG><BR>
  1597. <DD>
  1598. <PRE>
  1599.   $rv = $sth->execute                || die $sth->errstr;
  1600.   $rv = $sth->execute(@bind_values)  || die $sth->errstr;</PRE>
  1601. <P>Perform whatever processing is necessary to execute the prepared
  1602. statement.  An undef is returned if an error occurs, a successful
  1603. execute always returns true regardless of the number of rows affected
  1604. (even if it's zero, see below). It is always important to check the
  1605. return status of execute (and most other DBI methods) for errors.</P>
  1606. <P>For a <EM>non-select</EM> statement, execute returns the number of rows
  1607. affected (if known). If no rows were affected then execute returns
  1608. ``0E0'' which Perl will treat as 0 but will regard as true. Note that it
  1609. is <EM>not</EM> an error for no rows to be affected by a statement. If the
  1610. number of rows affected is not known then execute returns -1.</P>
  1611. <P>For <EM>select</EM> statements execute simply 'starts' the query within the
  1612. Engine. Use one of the fetch methods to retreive the data after
  1613. calling execute.  The execute method does <EM>not</EM> return the number of
  1614. rows that will be returned by the query (because most Engines can't
  1615. tell in advance), it simply returns a true value.</P>
  1616. <P>If any arguments are given then execute will effectively call
  1617. <A HREF="#bind_param">bind_param</A> for each value before executing the statement.
  1618. Values bound in this way are usually treated as SQL_VARCHAR types
  1619. unless the driver can determine the correct type (which is rare) or
  1620. bind_param (or bind_param_inout) has already been used to specify the
  1621. type.</P>
  1622. <DT><STRONG><A NAME="item_fetchrow_arrayref"><STRONG>fetchrow_arrayref</STRONG></A></STRONG><BR>
  1623. <DD>
  1624. <PRE>
  1625.   $ary_ref = $sth->fetchrow_arrayref;
  1626.   $ary_ref = $sth->fetch;    # alias</PRE>
  1627. <P>Fetches the next row of data and returns a reference to an array
  1628. holding the field values.  Null field values are returned as undef.
  1629. This is the fastest way to fetch data, particularly if used with
  1630. $sth->bind_columns.</P>
  1631. <P>If there are no more rows <EM>or</EM> an error occurs then fetchrow_arrayref
  1632. returns an undef. You should check $sth->err afterwards (or use the
  1633. RaiseError attribute) to discover if the undef returned was due to an
  1634. error.</P>
  1635. <P>Note that <EM>currently</EM> the <EM>same</EM> array ref will be returned for each
  1636. fetch so don't store the ref and then use it after a later fetch.</P>
  1637. <DT><STRONG><A NAME="item_fetchrow_array"><STRONG>fetchrow_array</STRONG></A></STRONG><BR>
  1638. <DD>
  1639. <PRE>
  1640.  @ary = $sth->fetchrow_array;</PRE>
  1641. <P>An alternative to <A HREF="#item_fetchrow_arrayref"><CODE>fetchrow_arrayref</CODE></A>. Fetches the next row of data
  1642. and returns it as an array holding the field values.  Null values are
  1643. returned as undef.</P>
  1644. <P>If there are no more rows <EM>or</EM> an error occurs then fetchrow_array
  1645. returns an empty list. You should check $sth->err afterwards (or use
  1646. the RaiseError attribute) to discover if the empty list returned was
  1647. due to an error.</P>
  1648. <DT><STRONG><A NAME="item_fetchrow_hashref"><STRONG>fetchrow_hashref</STRONG></A></STRONG><BR>
  1649. <DD>
  1650. <PRE>
  1651.  $hash_ref = $sth->fetchrow_hashref;
  1652.  $hash_ref = $sth->fetchrow_hashref($name);</PRE>
  1653. <P>An alternative to <A HREF="#item_fetchrow_arrayref"><CODE>fetchrow_arrayref</CODE></A>. Fetches the next row of data
  1654. and returns it as a reference to a hash containing field name and field
  1655. value pairs.  Null values are returned as undef.</P>
  1656. <P>If there are no more rows <EM>or</EM> an error occurs then fetchrow_hashref
  1657. returns an undef. You should check $sth->err afterwards (or use the
  1658. RaiseError attribute) to discover if the undef returned was due to an
  1659. error.</P>
  1660. <P>The optional $name parameter specifies the name of the statement handle
  1661. attribute to use to get the field names. It defaults to '<A HREF="#name">NAME</A>'.</P>
  1662. <P>The keys of the hash are the same names returned by $sth->{$name}. If
  1663. more than one field has the same name there will only be one entry in
  1664. the returned hash for those fields.</P>
  1665. <P>Note that using fetchrow_hashref is currently <EM>not portable</EM> between
  1666. databases because different databases return fields names with
  1667. different letter cases (some all uppercase, some all lower, and some
  1668. return the letter case used to create the table). This will be addressed
  1669. in a future version of the DBI.</P>
  1670. <P>Because of the extra work fetchrow_hashref and perl have to perform it
  1671. is not as efficient as fetchrow_arrayref or fetchrow_array and is not
  1672. recommended where performance is very important. Currently a new hash
  1673. reference is returned for each row.  This is likely to change in the
  1674. future so don't rely on it.</P>
  1675. <DT><STRONG><A NAME="item_fetchall_arrayref"><STRONG>fetchall_arrayref</STRONG></A></STRONG><BR>
  1676. <DD>
  1677. <PRE>
  1678.   $tbl_ary_ref = $sth->fetchall_arrayref;
  1679.   $tbl_ary_ref = $sth->fetchall_arrayref( $slice_array_ref );
  1680.   $tbl_ary_ref = $sth->fetchall_arrayref( $slice_hash_ref  );</PRE>
  1681. <P>The <A HREF="#item_fetchall_arrayref"><CODE>fetchall_arrayref</CODE></A> method can be used to fetch all the data to be
  1682. returned from a prepared and executed statement handle. It returns a
  1683. reference to an array which contains one reference per row.</P>
  1684. <P>If there are no rows to return, fetchall_arrayref returns a reference
  1685. to an empty array. If an error occurs fetchall_arrayref returns the
  1686. data fetched thus far, which may be none.  You should check $sth->err
  1687. afterwards (or use the RaiseError attribute) to discover if the data is
  1688. complete or was truncated due to an error.</P>
  1689. <P>When passed an array reference, fetchall_arrayref uses <A HREF="#fetchrow_arrayref">fetchrow_arrayref</A>
  1690. to fetch each row as an array ref. If the parameter array is not empty
  1691. then it is used as a slice to select individual columns by index number.</P>
  1692. <P>With no parameters, fetchall_arrayref acts as if passed an empty array ref.</P>
  1693. <P>When passed a hash reference, fetchall_arrayref uses <A HREF="#fetchrow_hashref">fetchrow_hashref</A>
  1694. to fetch each row as a hash ref. If the parameter hash is not empty
  1695. then it is used as a slice to select individual columns by name. The
  1696. names should be lower case regardless of the letter case in $sth->{NAME}.
  1697. The values of the hash should be set to 1.</P>
  1698. <P>For example, to fetch just the first column of every row you can use:</P>
  1699. <PRE>
  1700.   $tbl_ary_ref = $sth->fetchall_arrayref([0]);</PRE>
  1701. <P>To fetch the second to last and last column of every row you can use:</P>
  1702. <PRE>
  1703.   $tbl_ary_ref = $sth->fetchall_arrayref([-2,-1]);</PRE>
  1704. <P>To fetch only the fields called foo and bar of every row you can use:</P>
  1705. <PRE>
  1706.   $tbl_ary_ref = $sth->fetchall_arrayref({ foo=>1, bar=>1 });</PRE>
  1707. <P>The first two examples return a ref to an array of array refs. The last
  1708. returns a ref to an array of hash refs.</P>
  1709. <DT><STRONG><A NAME="item_finish"><STRONG>finish</STRONG></A></STRONG><BR>
  1710. <DD>
  1711. <PRE>
  1712.   $rc  = $sth->finish;</PRE>
  1713. <P>Indicates that no more data will be fetched from this statement handle
  1714. before it is either executed again or destroyed.  <EM>It is rarely needed</EM>
  1715. but can sometimes be helpful in very specific situations in order to
  1716. allow the server to free up resources currently being held (such as
  1717. sort buffers).</P>
  1718. <P>When all the data has been fetched from a select statement the driver
  1719. should automatically call finish for you. So you should not normally
  1720. need to call it explicitly.</P>
  1721. <P>Consider a query like</P>
  1722. <PRE>
  1723.   SELECT foo FROM table WHERE bar=? ORDER BY foo</PRE>
  1724. <P>where you want to select just the first (smallest) foo value from a
  1725. very large table. When executed the database server will have to use
  1726. temporary buffer space to store the sorted rows. If, after executing
  1727. the handle and selecting one row, the handle won't be re-executed for
  1728. some time and won't be destroyed, the finish method can be used to tell
  1729. the server that the buffer space can be freed.</P>
  1730. <P>Calling finish resets the <A HREF="#active">Active</A> attribute for the statement.  It
  1731. may also make some statement handle attributes, like NAME and TYPE etc.,
  1732. unavailable if they have not already been accessed (and thus cached).</P>
  1733. <P>The finish method does not affect the transaction status of the
  1734. session.  It has nothing to do with transactions. It's mostly an
  1735. internal 'housekeeping' method that is rarely needed. There's no need
  1736. to call finish if you're about to destroy or re-execute the statement
  1737. handle.  See also <A HREF="#disconnect">disconnect</A> and the <A HREF="#active">Active</A> attribute.</P>
  1738. <DT><STRONG><A NAME="item_rows"><STRONG>rows</STRONG></A></STRONG><BR>
  1739. <DD>
  1740. <PRE>
  1741.   $rv = $sth->rows;</PRE>
  1742. <P>Returns the number of rows affected by the last row affecting command,
  1743. or -1 if not known or not available.</P>
  1744. <P>Generally you can only rely on a row count after a <EM>non</EM>-select
  1745. <A HREF="#item_execute"><CODE>execute</CODE></A> (for some specific operations like update and delete) or
  1746. after fetching <EM>all</EM> the rows of a select statement.</P>
  1747. <P>For select statements it is generally not possible to know how many
  1748. rows will be returned except by fetching them all.  Some drivers will
  1749. return the number of rows the application has fetched <EM>so far</EM> but
  1750. others may return -1 until all rows have been fetched.  So, use of the
  1751. rows method, or $DBI::rows, with select statements is <EM>not</EM>
  1752. recommended.</P>
  1753. <DT><STRONG><A NAME="item_bind_col"><STRONG>bind_col</STRONG></A></STRONG><BR>
  1754. <DD>
  1755. <PRE>
  1756.   $rc = $sth->bind_col($column_number, \$var_to_bind);</PRE>
  1757. <P>Binds an output column (field) of a select statement to a perl variable.
  1758. You do not need to do this but it can be useful for some applications.</P>
  1759. <P>Whenever a row is fetched from the database the corresponding perl
  1760. variable is automatically updated. There is no need to fetch and assign
  1761. the values manually. This makes using bound variables very efficient.
  1762. See bind_columns below for an example.  Note that column numbers count
  1763. up from 1.</P>
  1764. <P>The binding is performed at a very low level using perl aliasing so
  1765. there is no extra copying taking place. So long as the driver uses the
  1766. correct internal DBI call to get the array the fetch function returns,
  1767. it will automatically support column binding.</P>
  1768. <P>For maximum portability between drivers, bind_col should be called after
  1769. execute.</P>
  1770. <P>The <A HREF="#bind_param">bind_param</A> method performs a similar function for input variables.</P>
  1771. <DT><STRONG><A NAME="item_bind_columns"><STRONG>bind_columns</STRONG></A></STRONG><BR>
  1772. <DD>
  1773. <PRE>
  1774.   $rc = $sth->bind_columns(@list_of_refs_to_vars_to_bind);</PRE>
  1775. <P>Calls <A HREF="#bind_col">bind_col</A> for each column of the select statement.  You do not
  1776. need to bind columns but it can be useful for some applications.
  1777. The bind_columns method will die if the number of references does not
  1778. match the number of fields.</P>
  1779. <P>For maximum portability between drivers, bind_columns should be called after
  1780. execute.</P>
  1781. <P>For example:</P>
  1782. <PRE>
  1783.   $dbh->{RaiseError} = 1; # do this, or check every call for errors
  1784.   $sth = $dbh->prepare(q{ select region, sales from sales_by_region });
  1785.   $sth->execute;
  1786.   my ($region, $sales);</PRE>
  1787. <PRE>
  1788.   # Bind perl variables to columns:
  1789.   $rv = $sth->bind_columns(\$region, \$sales);</PRE>
  1790. <PRE>
  1791.   # you can also use perl's \(...) syntax (see <A HREF="../../lib/Pod/perlref.html">perlref</A> docs):
  1792.   #     $sth->bind_columns(\($region, $sales));</PRE>
  1793. <PRE>
  1794.   # Column binding is the most efficient way to fetch data
  1795.   while ($sth->fetch) {
  1796.       print "$region: $sales\n";
  1797.   }</PRE>
  1798. <P>For compatibility with old scripts, if the first parameter is undef or
  1799. a hash reference it will be ignored.</P>
  1800. <DT><STRONG><A NAME="item_dump_results"><STRONG>dump_results</STRONG></A></STRONG><BR>
  1801. <DD>
  1802. <PRE>
  1803.   $rows = $sth->dump_results($maxlen, $lsep, $fsep, $fh);</PRE>
  1804. <P>Fetches all the rows from $sth, calls DBI::neat_list for each row and
  1805. prints the results to $fh (defaults to <CODE>STDOUT</CODE>) separated by $lsep
  1806. (default <CODE>"\n"</CODE>). $fsep defaults to <CODE>", "</CODE> and $maxlen defaults to 35.</P>
  1807. <P>This method is designed as a handy utility for prototyping and
  1808. testing queries. Since it uses <A HREF="#neat_list">neat_list</A> which uses <A HREF="#neat">neat</A> which
  1809. formats and edits the string for reading by humans, it's not recomended
  1810. for data transfer applications.</P>
  1811. </DL>
  1812. <P>
  1813. <H2><A NAME="statement handle attributes">Statement Handle Attributes</A></H2>
  1814. <P>This section describes attributes specific to statement handles. Most
  1815. of these attributes are read-only.</P>
  1816. <P>Changes to these statement handle attributes do not affect any other
  1817. existing or future statement handles.</P>
  1818. <P>Attempting to set or get the value of an unknown attribute is fatal,
  1819. except for private driver specific attributes (which all have names
  1820. starting with a lowercase letter).</P>
  1821. <P>Example:</P>
  1822. <PRE>
  1823.   ... = $h->{NUM_OF_FIELDS};    # get/read</PRE>
  1824. <P>Note that some drivers cannot provide valid values for some or all of
  1825. these attributes until after $sth->execute has been called.</P>
  1826. <P>See also <A HREF="#finish">finish</A> for the effect it may have on some attributes.</P>
  1827. <DL>
  1828. <DT><STRONG><A NAME="item_NUM_OF_FIELDS"><STRONG>NUM_OF_FIELDS</STRONG>  (integer, read-only)</A></STRONG><BR>
  1829. <DD>
  1830. Number of fields (columns) the prepared statement will return. Non-select
  1831. statements will have NUM_OF_FIELDS == 0.
  1832. <P></P>
  1833. <DT><STRONG><A NAME="item_NUM_OF_PARAMS"><STRONG>NUM_OF_PARAMS</STRONG>  (integer, read-only)</A></STRONG><BR>
  1834. <DD>
  1835. The number of parameters (placeholders) in the prepared statement.
  1836. See SUBSTITUTION VARIABLES below for more details.
  1837. <P></P>
  1838. <DT><STRONG><A NAME="item_NAME"><STRONG>NAME</STRONG>  (array-ref, read-only)</A></STRONG><BR>
  1839. <DD>
  1840. Returns a <EM>reference</EM> to an array of field names for each column. The
  1841. names may contain spaces but should not be truncated or have any
  1842. trailing space. Note that the names have the letter case (upper, lower
  1843. or mixed) as returned by the driver being used. Portable applications
  1844. should use <A HREF="#name_lc">NAME_lc</A> or <A HREF="#name_uc">NAME_uc</A>.
  1845. <PRE>
  1846.   print "First column name: $sth->{NAME}->[0]\n";</PRE>
  1847. <P></P>
  1848. <DT><STRONG><A NAME="item_NAME_lc"><STRONG>NAME_lc</STRONG>  (array-ref, read-only)</A></STRONG><BR>
  1849. <DD>
  1850. Like <A HREF="#name">NAME</A> but always returns lowercase names.
  1851. <P></P>
  1852. <DT><STRONG><A NAME="item_NAME_uc"><STRONG>NAME_uc</STRONG>  (array-ref, read-only)</A></STRONG><BR>
  1853. <DD>
  1854. Like <A HREF="#name">NAME</A> but always returns uppercase names.
  1855. <P></P>
  1856. <DT><STRONG><A NAME="item_TYPE"><STRONG>TYPE</STRONG>  (array-ref, read-only) *NEW*</A></STRONG><BR>
  1857. <DD>
  1858. Returns a <EM>reference</EM> to an array of integer values for each
  1859. column. The value indicates the data type of the corresponding column.
  1860. <P>The values used correspond to the international standards (ANSI X3.135
  1861. and ISO/IEC 9075) which, in general terms, means ODBC. Driver specific
  1862. types which don't exactly match standard types should generally return
  1863. the same values as an ODBC driver supplied by the makers of the
  1864. database. That might include private type numbers in ranges the vendor
  1865. has officially registered. See:</P>
  1866. <PRE>
  1867.   <A HREF="ftp://jerry.ece.umassd.edu/isowg3/dbl/SQL_Registry">ftp://jerry.ece.umassd.edu/isowg3/dbl/SQL_Registry</A></PRE>
  1868. <P>Where there's no vendor supplied ODBC driver to be compatible with, the
  1869. DBI driver can use type numbers in the range now <EM>officially</EM> reserved
  1870. for use by the DBI: -9999 to -9000.</P>
  1871. <P>All possible values for TYPE should have at least one entry in the
  1872. output of the <CODE>type_info_all()</CODE> method (see <A HREF="#type_info_all">type_info_all</A>).</P>
  1873. <P></P>
  1874. <DT><STRONG><A NAME="item_PRECISION"><STRONG>PRECISION</STRONG>  (array-ref, read-only) *NEW*</A></STRONG><BR>
  1875. <DD>
  1876. Returns a <EM>reference</EM> to an array of integer values for each
  1877. column.  For nonnumeric columns the value generally refers to either
  1878. the maximum length or the defined length of the column.  For numeric
  1879. columns the value refers to the maximum number of significant digits
  1880. used by the data type (without considering a sign character or decimal
  1881. point).  Note that for floating point types (REAL, FLOAT, DOUBLE) the
  1882. 'display size' can be up to 7 characters greater than the precision
  1883. (for the sign + decimal point + the letter E + a sign + 2 or 3 digits).
  1884. <P></P>
  1885. <DT><STRONG><A NAME="item_SCALE"><STRONG>SCALE</STRONG>  (array-ref, read-only) *NEW*</A></STRONG><BR>
  1886. <DD>
  1887. Returns a <EM>reference</EM> to an array of integer values for each column.
  1888. NULL (undef) values indicate columns where scale is not applicable.
  1889. <P></P>
  1890. <DT><STRONG><STRONG>NULLABLE</STRONG>  (array-ref, read-only)</STRONG><BR>
  1891. <DD>
  1892. Returns a <EM>reference</EM> to an array indicating the possibility of each
  1893. column returning a null: 0 = no, 1 = yes, 2 = unknown.
  1894. <PRE>
  1895.   print "First column may return NULL\n" if $sth->{NULLABLE}->[0];</PRE>
  1896. <P></P>
  1897. <DT><STRONG><A NAME="item_CursorName"><STRONG>CursorName</STRONG>  (string, read-only)</A></STRONG><BR>
  1898. <DD>
  1899. Returns the name of the cursor associated with the statement handle if
  1900. available. If not available or the database driver does not support the
  1901. <CODE>"where current of ..."</CODE> SQL syntax then it returns undef.
  1902. <P></P>
  1903. <DT><STRONG><A NAME="item_Statement"><STRONG>Statement</STRONG>  (string, read-only) *NEW*</A></STRONG><BR>
  1904. <DD>
  1905. Returns the statement string passed to the <A HREF="#prepare">prepare</A> method.
  1906. <P></P>
  1907. <DT><STRONG><A NAME="item_RowsInCache"><STRONG>RowsInCache</STRONG>  (integer, read-only) *NEW*</A></STRONG><BR>
  1908. <DD>
  1909. If the driver supports a local row cache for select statements then
  1910. this attribute holds the number of un-fetched rows in the cache. If the
  1911. driver doesn't, then it returns undef. Note that some drivers pre-fetch
  1912. rows on execute, others wait till the first fetch.
  1913. <P>See also the <A HREF="#rowcachesize">RowCacheSize</A> database handle attribute.</P>
  1914. <P></P></DL>
  1915. <P>
  1916. <HR>
  1917. <H1><A NAME="further information">FURTHER INFORMATION</A></H1>
  1918. <P>
  1919. <H2><A NAME="transactions">Transactions</A></H2>
  1920. <P>Transactions are a fundamental part of any robust database system. They
  1921. protect against errors and database corruption by ensuring that sets of
  1922. related changes to the database take place in atomic (indivisible,
  1923. all-or-nothing) units.</P>
  1924. <P>This section applies to databases which support transactions and where
  1925. AutoCommit is <EM>off</EM>.  See <A HREF="#autocommit">AutoCommit</A> for details of using AutoCommit
  1926. with various types of database.</P>
  1927. <P>The recommended way to implement robust transactions in Perl
  1928. applications is to make use of <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval { ... }</CODE></A> (which is very fast,
  1929. unlike <CODE>eval "..."</CODE>).</P>
  1930. <PRE>
  1931.   eval {
  1932.       foo(...)   # do lots of work here
  1933.       bar(...)   # including inserts
  1934.       baz(...)   # and updates
  1935.   };
  1936.   if ($@) {
  1937.       # $@ contains $DBI::errstr if DBI RaiseError caused die
  1938.       $dbh->rollback;
  1939.       # add other application on-error-clean-up code here
  1940.   }
  1941.   else {
  1942.       $dbh->commit;
  1943.   }</PRE>
  1944. <P>The code in foo(), or any other code executed from within the curly braces,
  1945. can be implemented in this way:</P>
  1946. <PRE>
  1947.   $h->method(@args) || die $h->errstr</PRE>
  1948. <P>or the $h->{RaiseError} attribute can be set on. With RaiseError set
  1949. the DBI will automatically die if any DBI method call on that
  1950. handle (or a child handle) fails, so you don't have to test the return
  1951. value of each method call. See <A HREF="#raiseerror">RaiseError</A> for more details.</P>
  1952. <P>A major advantage of the eval approach is that the transaction will be
  1953. properly rolled back if <EM>any</EM> code in the inner application dies
  1954. for <EM>any</EM> reason. The major advantage of using the $h->{RaiseError}
  1955. attribute is that all DBI calls will be checked automatically. Both
  1956. techniques are strongly recommended.</P>
  1957. <P>
  1958. <H2><A NAME="handling blob / long / memo fields">Handling BLOB / LONG / Memo Fields</A></H2>
  1959. <P>Many databases support 'blob' (binary large objects), 'long' or similar
  1960. datatypes for holding very long strings or large amounts of binary
  1961. data in a single field. Some databases support variable length long
  1962. values over 2,000,000,000 bytes in length.</P>
  1963. <P>Since values of that size can't usually be held in memory and because
  1964. databases can't usually know in advance the length of the longest long
  1965. that will be returned from a select statement (unlike other data
  1966. types) some special handling is required.</P>
  1967. <P>In this situation the value of the $h->{LongReadLen} attribute is used
  1968. to determine how much buffer space to allocate when <EM>fetching</EM> such
  1969. fields.  The $h->{LongTruncOk} attribute is used to determine how to
  1970. behave if a fetched value can't fit into the buffer.</P>
  1971. <P>When trying to insert long or binary values, placeholders should be used
  1972. since there are often limits on the maximum size of an (insert)
  1973. statement and the <A HREF="#quote">quote</A> method generally can't cope with binary
  1974. data.  See <A HREF="#placeholders and bind values">Placeholders and Bind Values</A>.</P>
  1975. <P>
  1976. <H2><A NAME="simple examples">Simple Examples</A></H2>
  1977. <P>Here's a complete example program to select and fetch some data:</P>
  1978. <PRE>
  1979.   my $dbh = DBI->connect("dbi:DriverName:db_name", $user, $password)
  1980.       || die "Can't connect to $data_source: $DBI::errstr";</PRE>
  1981. <PRE>
  1982.   my $sth = $dbh->prepare( q{
  1983.           SELECT name, phone
  1984.           FROM mytelbook
  1985.   }) || die "Can't prepare statement: $DBI::errstr";</PRE>
  1986. <PRE>
  1987.   my $rc = $sth->execute
  1988.       || die "Can't execute statement: $DBI::errstr";</PRE>
  1989. <PRE>
  1990.   print "Query will return $sth->{NUM_OF_FIELDS} fields.\n\n";
  1991.   print "Field names: @{ $sth->{NAME} }\n";</PRE>
  1992. <PRE>
  1993.   while (($name, $phone) = $sth->fetchrow_array) {
  1994.       print "$name: $phone\n";
  1995.   }
  1996.   # check for problems which may have terminated the fetch early
  1997.   die $sth->errstr if $sth->err;</PRE>
  1998. <PRE>
  1999.   $dbh->disconnect;</PRE>
  2000. <P>Here's a complete example program to insert some data from a file:
  2001. (this example uses RaiseError to avoid needing to check each call)</P>
  2002. <PRE>
  2003.   my $dbh = DBI->connect("dbi:DriverName:db_name", $user, $password, {
  2004.       RaiseError => 1, AutoCommit => 0
  2005.   });</PRE>
  2006. <PRE>
  2007.   my $sth = $dbh->prepare( q{
  2008.       INSERT INTO table (name, phone) VALUES (?, ?)
  2009.   });</PRE>
  2010. <PRE>
  2011.   open FH, "<phone.csv" or die "Unable to open phone.csv: $!";
  2012.   while (<FH>) {
  2013.       chop;
  2014.       my ($name, $phone) = split /,/;
  2015.       $sth->execute($name, $phone);
  2016.   }
  2017.   close FH;</PRE>
  2018. <PRE>
  2019.   $dbh->commit;
  2020.   $dbh->disconnect;</PRE>
  2021. <P>Converting fetched NULLs (undefined values) to empty strings:</P>
  2022. <PRE>
  2023.   while($row = $sth->fetchrow_arrayref) {
  2024.     # this is a fast and simple way to deal with nulls:
  2025.     foreach (@$row) { $_ = '' unless defined }
  2026.     print "@$row\n";
  2027.   }</PRE>
  2028. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_q"><CODE>q{...}</CODE></A> style quoting used in these example avoids clashing with
  2029. quotes that may be used in the SQL statement. Use the double-quote like
  2030. <A HREF="../../lib/Pod/perlfunc.html#item_qq"><CODE>qq{...}</CODE></A> operator if you want to interpolate variables into the string.
  2031. See <A HREF="../../lib/Pod/perlop.html#quote and quotelike operators">Quote and Quote-like Operators in the perlop manpage</A> for more details.</P>
  2032. <P>
  2033. <H2><A NAME="threads and thread safety">Threads and Thread Safety</A></H2>
  2034. <P>Perl versions 5.004_50 and later support threads on many platforms.
  2035. The DBI should build on these platforms but currently has made <EM>no</EM>
  2036. attempt to be thread safe.</P>
  2037. <P>
  2038. <H2><A NAME="signal handling and canceling operations">Signal Handling and Canceling Operations</A></H2>
  2039. <P>The first thing to say is that signal handling in Perl is currently
  2040. <EM>not</EM> safe. There is <EM>always</EM> a small risk of Perl crashing and/or
  2041. core dumping when, or after, handling a signal.  (The risk was reduced
  2042. with 5.004_04 but is still present.)</P>
  2043. <P>The two most common uses of signals in relation to the DBI are for
  2044. canceling operations when the user types Ctrl-C (interrupt), and for
  2045. implementing a timeout using <A HREF="../../lib/Pod/perlfunc.html#item_alarm"><CODE>alarm()</CODE></A> and $SIG{ALRM}.</P>
  2046. <P>To assist in implementing these operations the DBI provides a <CODE>cancel</CODE>
  2047. method for statement handles. The cancel method should abort the current
  2048. operation and is designed to be called from a signal handler.</P>
  2049. <P>However, it must be stressed that: a) few drivers implement this at
  2050. the moment (the DBI provides a default method that just returns undef),
  2051. b) even if implemented there is still a possibility that the statement
  2052. handle, and possibly the parent database handle, will not be usable
  2053. afterwards.</P>
  2054. <P>If cancel returns true then it is implemented and has successfully
  2055. invoked the database engine's own cancel function. If it returns false
  2056. then cancel failed (undef if not implemented).</P>
  2057. <P>
  2058. <HR>
  2059. <H1><A NAME="debugging">DEBUGGING</A></H1>
  2060. <P>In addition to the <A HREF="#trace">trace</A> method you can enable the same trace
  2061. information by setting the DBI_TRACE environment variable before
  2062. starting perl.</P>
  2063. <P>On unix-like systems using a bourne-like shell you can do this easily
  2064. for a single command:</P>
  2065. <PRE>
  2066.   DBI_TRACE=2 perl your_test_script.pl</PRE>
  2067. <P>If DBI_TRACE is set to a non-numeric value then it is assumed to
  2068. be a file name and the trace level will be set to 2 with all trace
  2069. output will be appended to that file. If the name beings with a number
  2070. followed by an equals (<CODE>=</CODE>) then they are stripped off from the name
  2071. and the number is used to set the trace level. For example:</P>
  2072. <PRE>
  2073.   DBI_TRACE=3=dbitrace.log perl your_test_script.pl</PRE>
  2074. <P>See also the <A HREF="#trace">trace</A> method.</P>
  2075. <P>
  2076. <HR>
  2077. <H1><A NAME="warning and error messages">WARNING AND ERROR MESSAGES</A></H1>
  2078. <P>(This section needs more words about causes and remedies.)</P>
  2079. <P>
  2080. <H2><A NAME="fatal errors">Fatal Errors</A></H2>
  2081. <DL>
  2082. <DT><STRONG><A NAME="item_Can%27t_call_method_%22prepare%22_without_a_packag">Can't call method ``prepare'' without a package or object reference</A></STRONG><BR>
  2083. <DD>
  2084. The $dbh handle you're using to call prepare is probably undefined because
  2085. the preceeding connect failed. You should always check the return status of
  2086. DBI methods, or use the <A HREF="#raiseerror">RaiseError</A> attribute.
  2087. <P></P>
  2088. <DT><STRONG><A NAME="item_Can%27t_call_method_%22execute%22_without_a_packag">Can't call method ``execute'' without a package or object reference</A></STRONG><BR>
  2089. <DD>
  2090. The $sth handle you're using to call execute is probably undefined because
  2091. the preceeding prepare failed. You should always check the return status of
  2092. DBI methods, or use the <A HREF="#raiseerror">RaiseError</A> attribute.
  2093. <P></P>
  2094. <DT><STRONG><A NAME="item_DBI%2FDBD_internal_version_mismatch">DBI/DBD internal version mismatch</A></STRONG><BR>
  2095. <DD>
  2096. <DT><STRONG><A NAME="item_DBD_driver_has_not_implemented_the_AutoCommit_attr">DBD driver has not implemented the AutoCommit attribute</A></STRONG><BR>
  2097. <DD>
  2098. <DT><STRONG><A NAME="item_Can%27t_%5Bsg%5Det_%25s%2D%3E%7B%25s%7D%3A_unrecog">Can't [sg]et %s->{%s}: unrecognised attribute</A></STRONG><BR>
  2099. <DD>
  2100. </DL>
  2101. <P>
  2102. <H2><A NAME="warnings">Warnings</A></H2>
  2103. <DL>
  2104. <DT><STRONG><A NAME="item_Database_handle_destroyed_without_explicit_disconn">Database handle destroyed without explicit disconnect</A></STRONG><BR>
  2105. <DD>
  2106. <DT><STRONG><A NAME="item_DBI_Handle_cleared_whilst_still_holding_%25d_cache">DBI Handle cleared whilst still holding %d cached kids!</A></STRONG><BR>
  2107. <DD>
  2108. <DT><STRONG><A NAME="item_DBI_Handle_cleared_whilst_still_active%21">DBI Handle cleared whilst still active!</A></STRONG><BR>
  2109. <DD>
  2110. <DT><STRONG><A NAME="item_DBI_Handle_has_uncleared_implementors_data">DBI Handle has uncleared implementors data</A></STRONG><BR>
  2111. <DD>
  2112. <DT><STRONG><A NAME="item_DBI_Handle_has_%25d_uncleared_child_handles">DBI Handle has %d uncleared child handles</A></STRONG><BR>
  2113. <DD>
  2114. </DL>
  2115. <P>
  2116. <HR>
  2117. <H1><A NAME="see also">SEE ALSO</A></H1>
  2118. <P>
  2119. <H2><A NAME="database documentation">Database Documentation</A></H2>
  2120. <P>SQL Language Reference Manual.</P>
  2121. <P>
  2122. <H2><A NAME="books and journals">Books and Journals</A></H2>
  2123. <PRE>
  2124.  Programming the Perl DBI, by Alligator Descartes and Tim Bunce.
  2125.  Due to be published by O'Reilly September/October 1999.</PRE>
  2126. <PRE>
  2127.  Programming Perl 2nd Ed. by Larry Wall, Tom Christiansen & Randal Schwartz.
  2128.  Learning Perl by Randal Schwartz.</PRE>
  2129. <PRE>
  2130.  Dr Dobb's Journal, November 1996.
  2131.  The Perl Journal, April 1997.</PRE>
  2132. <P>
  2133. <H2><A NAME="manual pages">Manual Pages</A></H2>
  2134. <P><EM>perl(1)</EM>, <EM>perlmod(1)</EM>, <EM>perlbook(1)</EM></P>
  2135. <P>
  2136. <H2><A NAME="mailing list">Mailing List</A></H2>
  2137. <P>The dbi-users mailing list is the primary means of communication among
  2138. users of the DBI and its related modules. Subscribe and unsubscribe via:</P>
  2139. <PRE>
  2140.  <A HREF="http://www.isc.org/dbi-lists.html">http://www.isc.org/dbi-lists.html</A></PRE>
  2141. <P>Mailing list archives are held at:</P>
  2142. <PRE>
  2143.  <A HREF="http://www.rosat.mpe-garching.mpg.de/mailing-lists/PerlDB-Interest/">http://www.rosat.mpe-garching.mpg.de/mailing-lists/PerlDB-Interest/</A>
  2144.  <A HREF="http://www.xray.mpe.mpg.de/mailing-lists/#dbi">http://www.xray.mpe.mpg.de/mailing-lists/#dbi</A>
  2145.  <A HREF="http://outside.organic.com/mail-archives/dbi-users/">http://outside.organic.com/mail-archives/dbi-users/</A>
  2146.  <A HREF="http://www.coe.missouri.edu/~faq/lists/dbi.html">http://www.coe.missouri.edu/~faq/lists/dbi.html</A></PRE>
  2147. <P>
  2148. <H2><A NAME="assorted related www links">Assorted Related WWW Links</A></H2>
  2149. <P>The DBI 'Home Page' (not maintained by me):</P>
  2150. <PRE>
  2151.  <A HREF="http://www.symbolstone.org/technology/perl/DBI">http://www.symbolstone.org/technology/perl/DBI</A></PRE>
  2152. <P>Other DBI related links:</P>
  2153. <PRE>
  2154.  <A HREF="http://eskimo.tamu.edu/~jbaker/dbi-examples.html">http://eskimo.tamu.edu/~jbaker/dbi-examples.html</A>
  2155.  <A HREF="http://tegan.deltanet.com/~phlip/DBUIdoc.html">http://tegan.deltanet.com/~phlip/DBUIdoc.html</A>
  2156.  <A HREF="http://dc.pm.org/perl_db.html">http://dc.pm.org/perl_db.html</A>
  2157.  <A HREF="http://wdvl.com/Authoring/DB/Intro/toc.html">http://wdvl.com/Authoring/DB/Intro/toc.html</A>
  2158.  <A HREF="http://www.hotwired.com/webmonkey/backend/tutorials/tutorial1.html">http://www.hotwired.com/webmonkey/backend/tutorials/tutorial1.html</A></PRE>
  2159. <P>Other database related links:</P>
  2160. <PRE>
  2161.  <A HREF="http://www.jcc.com/sql_stnd.html">http://www.jcc.com/sql_stnd.html</A>
  2162.  <A HREF="http://cuiwww.unige.ch/OSG/info/FreeDB/FreeDB.home.html">http://cuiwww.unige.ch/OSG/info/FreeDB/FreeDB.home.html</A></PRE>
  2163. <P>Commercial and Data Warehouse Links</P>
  2164. <PRE>
  2165.  <A HREF="http://www.datamining.org">http://www.datamining.org</A>
  2166.  <A HREF="http://www.olapcouncil.org">http://www.olapcouncil.org</A>
  2167.  <A HREF="http://www.idwa.org">http://www.idwa.org</A>
  2168.  <A HREF="http://www.knowledgecenters.org/dwcenter.asp">http://www.knowledgecenters.org/dwcenter.asp</A>
  2169.  <A HREF="http://pwp.starnetinc.com/larryg/">http://pwp.starnetinc.com/larryg/</A>
  2170.  <A HREF="http://www.data-warehouse.">http://www.data-warehouse.</A></PRE>
  2171. <P>Recommended Perl Programming Links</P>
  2172. <PRE>
  2173.  <A HREF="http://language.perl.com/style/">http://language.perl.com/style/</A></PRE>
  2174. <P>
  2175. <H2><A NAME="faq">FAQ</A></H2>
  2176. <P>Please also read the DBI FAQ which is installed as a DBI::FAQ module so
  2177. you can use perldoc to read it by executing the <CODE>perldoc DBI::FAQ</CODE> command.</P>
  2178. <P>
  2179. <HR>
  2180. <H1><A NAME="authors">AUTHORS</A></H1>
  2181. <P>DBI by Tim Bunce.  This pod text by Tim Bunce, J. Douglas Dunlop,
  2182. Jonathan Leffler and others.  Perl by Larry Wall and the
  2183. perl5-porters.</P>
  2184. <P>
  2185. <HR>
  2186. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  2187. <P>The DBI module is Copyright (c) 1995-1999 Tim Bunce. England.
  2188. All rights reserved.</P>
  2189. <P>You may distribute under the terms of either the GNU General Public
  2190. License or the Artistic License, as specified in the Perl README file.</P>
  2191. <P>
  2192. <HR>
  2193. <H1><A NAME="acknowledgements">ACKNOWLEDGEMENTS</A></H1>
  2194. <P>I would like to acknowledge the valuable contributions of the many
  2195. people I have worked with on the DBI project, especially in the early
  2196. years (1992-1994). In no particular order: Kevin Stock, Buzz Moschetti,
  2197. Kurt Andersen, Ted Lemon, William Hails, Garth Kennedy, Michael Peppler,
  2198. Neil S. Briscoe, Jeff Urlwin, David J. Hughes, Jeff Stander,
  2199. Forrest D Whitcher, Larry Wall, Jeff Fried, Roy Johnson, Paul Hudson,
  2200. Georg Rehfeld, Steve Sizemore, Ron Pool, Jon Meek, Tom Christiansen,
  2201. Steve Baumgarten, Randal Schwartz, and a whole lot more.</P>
  2202. <P>
  2203. <HR>
  2204. <H1><A NAME="translations">TRANSLATIONS</A></H1>
  2205. <P>A German translation of this manual and other Perl module docs (all
  2206. probably slightly out of date) is available, thanks to O'Reilly, at:</P>
  2207. <PRE>
  2208.   <A HREF="http://www.oreilly.de/catalog/perlmodger/manpages.html">http://www.oreilly.de/catalog/perlmodger/manpages.html</A></PRE>
  2209. <P>Some other translations:</P>
  2210. <PRE>
  2211.  <A HREF="http://cronopio.net/perl/">http://cronopio.net/perl/</A>                              - Spanish
  2212.  <A HREF="http://member.nifty.ne.jp/hippo2000/dbimemo.htm">http://member.nifty.ne.jp/hippo2000/dbimemo.htm</A>        - Japanese</PRE>
  2213. <P>
  2214. <HR>
  2215. <H1><A NAME="support / warranty">SUPPORT / WARRANTY</A></H1>
  2216. <P>The DBI is free software. IT COMES WITHOUT WARRANTY OF ANY KIND.</P>
  2217. <P>Commercial support for Perl and the DBI, DBD::Oracle and
  2218. Oraperl modules can be arranged via The Perl Clinic.
  2219. See <A HREF="http://www.perlclinic.com">http://www.perlclinic.com</A> for more details.</P>
  2220. <P>
  2221. <HR>
  2222. <H1><A NAME="training">TRAINING</A></H1>
  2223. <P>References to DBI related training resources. No recommendation implied.</P>
  2224. <PRE>
  2225.   <A HREF="http://www.treepax.co.uk">http://www.treepax.co.uk</A>
  2226.   <A HREF="http://www.keller.com/dbweb">http://www.keller.com/dbweb</A></PRE>
  2227. <P>
  2228. <HR>
  2229. <H1><A NAME="outstanding issues to do">OUTSTANDING ISSUES TO DO</A></H1>
  2230. <PRE>
  2231.         data types (ISO type numbers and type name conversions)
  2232.         error handling
  2233.         data dictionary methods
  2234.         test harness support methods
  2235.         portability
  2236.         blob_read
  2237.         etc</PRE>
  2238. <P>
  2239. <HR>
  2240. <H1><A NAME="frequently asked questions">FREQUENTLY ASKED QUESTIONS</A></H1>
  2241. <P>See the DBI FAQ for a more comprehensive list of FAQs. Use the
  2242. <CODE>perldoc DBI::FAQ</CODE> command to read it.</P>
  2243. <P>
  2244. <H2><A NAME="how fast is the dbi">How fast is the DBI?</A></H2>
  2245. <P>To measure the speed of the DBI and DBD::Oracle code I modified
  2246. DBD::Oracle such that you can set an attribute which will cause the
  2247. same row to be fetched from the row cache over and over again (without
  2248. involving Oracle code but exercising *all* the DBI and DBD::Oracle code
  2249. in the code path for a fetch).</P>
  2250. <P>The results (on my lightly loaded old Sparc 10) fetching 50000 rows using:</P>
  2251. <PRE>
  2252.         1 while $csr->fetch;</PRE>
  2253. <P><TABLE CELLSPACING=0 CELLPADDING=0><TR><TD>were:
  2254. <TR><TD><TD>one field:   5300 fetches per cpu second (approx)
  2255. <TR><TD><TD>ten fields:  4000 fetches per cpu second (approx)</TABLE></P>
  2256. <P>Obviously results will vary between platforms (newer faster platforms
  2257. can reach around 50000 fetches per second) but it does give a feel for
  2258. the maximum performance: fast.  By way of comparison, using the code:</P>
  2259. <PRE>
  2260.         1 while @row = $csr->fetchrow_array;</PRE>
  2261. <P>(fetchrow_array is roughly the same as ora_fetch) gives:</P>
  2262. <PRE>
  2263.         one field:   3100 fetches per cpu second (approx)
  2264.         ten fields:  1000 fetches per cpu second (approx)</PRE>
  2265. <P>Notice the slowdown and the more dramatic impact of extra fields.
  2266. (The fields were all one char long. The impact would be even bigger for
  2267. longer strings.)</P>
  2268. <P>Changing that slightly to represent actually _doing_ something in perl
  2269. with the fetched data:</P>
  2270. <PRE>
  2271.     while(@row = $csr->fetchrow_array) {
  2272.         $hash{++$i} = [ @row ];
  2273.     }</PRE>
  2274. <P>gives:    ten fields:  500 fetches per cpu second (approx)</P>
  2275. <P>That simple addition has *halved* the performance.</P>
  2276. <P>I therefore conclude that DBI and DBD::Oracle overheads are small
  2277. compared with Perl language overheads (and probably database overheads).</P>
  2278. <P>So, if you think the DBI or your driver is slow, try replacing your
  2279. fetch loop with just:</P>
  2280. <PRE>
  2281.         1 while $csr->fetch;</PRE>
  2282. <P>and time that. If that helps then point the finger at your own code. If
  2283. that doesn't help much then point the finger at the database, the
  2284. platform, the network etc. But think carefully before pointing it at
  2285. the DBI or your driver.</P>
  2286. <P>(Having said all that, if anyone can show me how to make the DBI or
  2287. drivers even more efficient, I'm all ears.)</P>
  2288. <P>
  2289. <H2><A NAME="why doesn't my cgi script work right">Why doesn't my CGI script work right?</A></H2>
  2290. <P>Read the information in the references below.  Please do <EM>not</EM> post
  2291. CGI related questions to the dbi-users mailing list (or to me).</P>
  2292. <PRE>
  2293.  <A HREF="http://www.perl.com/perl/faq/idiots-guide.html">http://www.perl.com/perl/faq/idiots-guide.html</A>
  2294.  <A HREF="http://www3.pair.com/webthing/docs/cgi/faqs/cgifaq.shtml">http://www3.pair.com/webthing/docs/cgi/faqs/cgifaq.shtml</A>
  2295.  <A HREF="http://www.perl.com/perl/faq/perl-cgi-faq.html">http://www.perl.com/perl/faq/perl-cgi-faq.html</A>
  2296.  <A HREF="http://www-genome.wi.mit.edu/WWW/faqs/www-security-faq.html">http://www-genome.wi.mit.edu/WWW/faqs/www-security-faq.html</A>
  2297.  <A HREF="http://www.boutell.com/faq/">http://www.boutell.com/faq/</A>
  2298.  <A HREF="http://www.perl.com/perl/faq/">http://www.perl.com/perl/faq/</A></PRE>
  2299. <P>Using Apache and mod_perl?</P>
  2300. <PRE>
  2301.  <A HREF="http://perl.apache.org/guide/">http://perl.apache.org/guide/</A></PRE>
  2302. <P>General problems and good ideas:</P>
  2303. <PRE>
  2304.  Use the CGI::ErrorWrap module.
  2305.  Remember that many env vars won't be set for CGI scripts</PRE>
  2306. <P>
  2307. <H2><A NAME="how can i maintain a www connection to a database">How can I maintain a WWW connection to a database?</A></H2>
  2308. <P>For information on the Apache httpd server and the mod_perl module see</P>
  2309. <PRE>
  2310.   <A HREF="http://perl.apache.org/">http://perl.apache.org/</A></PRE>
  2311. <P>
  2312. <H2><A NAME="what about odbc">What about ODBC?</A></H2>
  2313. <P>A DBD::ODBC module is available.</P>
  2314. <P>
  2315. <H2><A NAME="does the dbi have a year 2000 problem">Does the DBI have a year 2000 problem?</A></H2>
  2316. <P>No. The DBI has no knowledge or understanding of dates at all.</P>
  2317. <P>Individual drivers (DBD::*) may have some date handling code but are
  2318. unlikely to have year 2000 related problems within their code. However,
  2319. your application code which <EM>uses</EM> the DBI and DBD drivers may have
  2320. year 2000 related problems if it has not been designed and written well.</P>
  2321. <P>See also the ``Does Perl have a year 2000 problem?'' section of the Perl FAQ:</P>
  2322. <PRE>
  2323.   <A HREF="http://www.perl.com/CPAN/doc/FAQs/FAQ/PerlFAQ.html">http://www.perl.com/CPAN/doc/FAQs/FAQ/PerlFAQ.html</A></PRE>
  2324. <P>
  2325. <HR>
  2326. <H1><A NAME="other related work and perl modules">OTHER RELATED WORK AND PERL MODULES</A></H1>
  2327. <DL>
  2328. <DT><STRONG><A NAME="item_Apache%3A%3ADBI_by_E%2EMergl%40bawue%2Ede">Apache::DBI by <A HREF="mailto:E.Mergl@bawue.de">E.Mergl@bawue.de</A></A></STRONG><BR>
  2329. <DD>
  2330. To be used with the Apache daemon together with an embedded perl
  2331. interpreter like mod_perl. Establishes a database connection which
  2332. remains open for the lifetime of the http daemon. This way the CGI
  2333. connect and disconnect for every database access becomes superfluous.
  2334. <P></P>
  2335. <DT><STRONG><A NAME="item_JDBC_Server_by_Stuart_%27Zen%27_Bishop_%3Czen%40bf">JDBC Server by Stuart 'Zen' Bishop <<A HREF="mailto:zen@bf.rmit.edu.au">zen@bf.rmit.edu.au</A>></A></STRONG><BR>
  2336. <DD>
  2337. The server is written in Perl. The client classes that talk to it are 
  2338. of course in Java. Thus, a Java applet or application will be able to 
  2339. comunicate via the JDBC API with any database that has a DBI driver installed.
  2340. The URL used is in the form jdbc:dbi://host.domain.etc:999/Driver/DBName.
  2341. It seems to be very similar to some commercial products, such as jdbcKona.
  2342. <P></P>
  2343. <DT><STRONG><A NAME="item_Remote_Proxy_DBD_support">Remote Proxy DBD support</A></STRONG><BR>
  2344. <DD>
  2345. As of DBI 1.02, a complete implementation of a DBD::Proxy driver and the
  2346. DBI::ProxyServer are part of the DBI distribution.
  2347. <P></P>
  2348. <DT><STRONG><A NAME="item_SQL_Parser">SQL Parser</A></STRONG><BR>
  2349. <DD>
  2350. <PRE>
  2351.         Hugo van der Sanden <hv@crypt.compulink.co.uk>
  2352.         Stephen Zander <stephen.zander@mckesson.com></PRE>
  2353. <P>Based on the O'Reilly lex/yacc book examples and byacc.</P>
  2354. <P>See also the SQL::Statement module, a very simple SQL parser and engine,
  2355. base of the DBD::CSV driver.</P>
  2356. </DL>
  2357. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  2358. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  2359. <STRONG><P CLASS=block> DBI - Database independent interface for Perl</P></STRONG>
  2360. </TD></TR>
  2361. </TABLE>
  2362.  
  2363. </BODY>
  2364.  
  2365. </HTML>
  2366.