We Recommend

Learning Perl Learning Perl
In this smooth, carefully paced course, a leading Perl trainer teaches you to program in the language that threatens to make C, sed, awk, and the Unix shell obsolete for many tasks. This book is the "official" guide for both formal (classroom) and informal learning. It is fully accessible to the novice programmer.


Posted By

gdonald on 09/27/06


Tagged

DBI drivers


Versions (?)


Perl DBI drivers


Published in: Perl 


  1. #!/usr/bin/env perl
  2.  
  3. use DBI;
  4. #use strict;
  5.  
  6. foreach( @{ $DBI::EXPORT_TAGS{ sql_types } } )
  7. {
  8. printf "%s=%d\n", $_, &{"DBI::$_"};
  9. }

Report this snippet 

You need to login to post a comment.