2
votes
3answers
329 views
How do I refactor Perl code that uses Template Toolkit with DBI to take advantage of FastCGI?
Background
Below is a typical piece of Perl code (sample.pl for the sake of discussion) that grabs submitted form data using CGI, passes the form data to DBI which will then retri …
-2
votes
6answers
79 views
How to select rows using arrays in Perl-DBI module?
I am required to pull out rows corresponding to column name. The rows being pulled out correspond to address in array @values. Following is my code:
use strict;
use DBI;
open (FH …
0
votes
1answer
60 views
How do I connect to two different servers using Perl’s DBI module?
I have to compare columns of tables located in two different databases in two different servers. So far, I know how to connect to one server & one database using Perl script. I …
0
votes
5answers
87 views
How do I insert values from parallel arrays into a database using Perl’s DBI module?
I need to insert values in database using Perl's DBI module. I have parsed a file to obtain these values and hence these values are present in an arrays, say @array1, @array2, @arr …
1
vote
3answers
97 views
How can I install Perl’s DBI module on Ubuntu? [closed]
cant open perl script "Makefile.PL":No such file or directory.
While installing perl-DBI im getting this error. kindly suggest some solution.
3
votes
2answers
84 views
How can I print the SQL query executed after Perl’s DBI fills in the placeholders?
I'm using Perl's DBI module. I prepare a statement using placeholders, then execute the query.
Is it possible to print out the final query that was executed without manually escap …
1
vote
4answers
72 views
Perl DBI MySQL Error Msg : Can’t call method “do” on an undefined value
I am trying to run simple perl dbi example script to connect to mysql database and do some inserts.
Code:
#! bin/usr/perl -w
use strict;
use warnings;
use DBI();
my $dbh = DBI …
0
votes
3answers
107 views
How do I connect to an MS Access database using Perl?
I have a .accdb file on my local machine and I am trying to connect to it and read some data from 3 tables within the DB. How do I establish the connection using Perl?
So far I ha …
3
votes
3answers
98 views
How can I fetch a single count value from a database with DBI?
The following code seems to be just too much, for getting a single count value.
Is there a better, recommended way to fetch a single COUNT value using plain DBI?
sub get_count {
…
3
votes
5answers
96 views
How can I use placeholders for variadic SQL functions with Perl’s DBI?
I don't know if "variadic" is actually the right word, but I'm talking about things that can take a list of values, like IN(). If you've been working with DBI for long, you've prob …
0
votes
1answer
49 views
Perl -Database-Connection Count/error handling
Using a perl script (Perl 5.8.6), I'm connecting to Sybase dataserver.
Looking for the following:
How many connections are currently opened by the script.
Generic (non-dataserve …
1
vote
4answers
135 views
Can I get the table names from an SQL query with Perl’s DBI?
I am writing small snippets in Perl and DBI (SQLite yay!)
I would like to log some specific queries to text files having the same filename as that of the table name(s) on which th …
0
votes
3answers
226 views
How can I have DBIC persistent database connection in mod_perl?
I am using mod_perl for my web application. Currently, I plan to use a mysql database across the network. In every CGI request to display_customer_transaction.cgi, my script will
…
1
vote
3answers
72 views
Is MySQL able to return mutiple result set with one query?
I have the following (returning two separate result sets) being successfully executed from a proc but cannot do the same when executing this as a basic query.
SELECT * FROM person …
0
votes
1answer
67 views
JRruby, Sybase JDBC and DBI - fetching column name with the AS clause issue
I have a ruby script which I run using the JRuby Interpreter.
The script connects to a Sybase database using DBI and Sybase JDBC (jTDS3.jar and jconn3.jar)
My problem is that I ha …
