Topic: PERL Dbi
Answers to Common Questions
When to use the Perl DBI with Oracle
That means that Perl is not necessarily the right tool for commercial applications. The most important area for Perl is to help administrators with patchwork and customization not covered by other, more solid and feature-rich commercial too... Read More »
Source: http://www.dba-oracle.com/t_dbi_interface1.htm
What does the error message means? Perl DBI
Without changing logic, your code should look something like this: use strict; my $dir = "/export/appl/website/team/cgi-bin/operation/"; my $list = "CONTACTS"; my $CONNECT = "DBI:CSV:f_dir=$dir"; my $dbh = DBI->connect($CONNECT) or die "Can... Read More »
Source: http://www.experts-exchange.com/Q_20722689.htm
How to install perl DBI in WinNT
If you have active state perl installed then from the commandline run these two commands: c:\>ppm install DBI c:\>ppm install DBD-MySql Read More »
Source: http://www.experts-exchange.com/Q_21904453.htm
Featured Content: PERL Dbi
In computing, the Perl DBI (Perl Database Interface) offers a standardized way for programmers using the Perl programming language to embed database ... More »
Search for: Images · Videos
Answers to Other Common Questions
Follow these instructions. Source(s): http://perl.about.com/od/perltutorials/a… Read More »
Source: http://answers.yahoo.com/question/index?qid=20070309025123AAvnkjQ
1:2:3:4:5:6:7:8:9:10:11:12:13:14: use DBI; my $dbh = DBI->connect($dsn, $user, $pass); my $sth = $dbh->prepare('SELECT * FROM table WHERE customer=?'); open(my $in, '<file.txt') or die "file: $!\n";while(<$in>) { chomp; $sth->execute($_); #... Read More »
Source: http://www.experts-exchange.com/Q_24808928.htm
It's hard to debug this kind of thing, but here are a couple suggestions. It's difficult to debug this problem without a little more information, but here are a couple things you might try. Without knowing a little more about the database d... Read More »
Source: http://askville.amazon.com/Perl-code-work-DBI-MySQL-CSV/AnswerVie...
This usually happens when you are mismatching 32-bit and 64-bit programs / libraries. Try typing this to verify that you may have mismatch. file /usr/perl5/site_perl/5.8.4/sun4-solaris-64int/auto/DBD/Oracle/Oracle.so file /u01/app/oracle/pr... Read More »
Source: http://www.experts-exchange.com/Q_24308959.htm
$sth=$dbh->prepare("your command"); $sth->execute(): $sth->bind_columns(undef,@cols); print "number of columns: $#cols"; $type_info_all = $dbh->type_info_all; # see also $dbh->type_info; Read More »
Source: http://www.experts-exchange.com/Q_20326645.htm
Hi, Check out here(Linux stuff..) http://rpmfind.net/linux/RPM/fedora/1/i386/mysql-bench-3.23.58-4.i386.html Read More »
Source: http://www.experts-exchange.com/Q_21149308.htm
Want A Personal Answer?
735,357 people are answering.
About - Privacy - AskEraser - Advertise - Careers - Ask Blog - iPhone - Android - Help - Feedback ©2012 Ask.com