Tagged Questions

0
votes
4answers
53 views

How do I insert values from a hash into a database using Perl’s DBI module?

I need to insert values from a hash into a database. Following is the code template I have to insert values in table1 column key and value: use DBI; use strict; %hash; #assuming …
-1
votes
6answers
110 views

How can I select multiple rows using parameters from an array in Perl’s 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 …
2
votes
3answers
336 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 …
0
votes
1answer
65 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
117 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
116 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
86 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
80 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
114 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
102 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
103 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
56 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
138 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
229 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 …

1 2 3 4 5 next
15 30 50 per page