0
votes
4answers
62 views
Insert hash values in column while using Perl-DBI module?
I have a hash and I am trying to insert its values into database. Hash is defined as follows:
my %hash = (
1 => 'First Word',
2 => 'Second Word is correct',
…
0
votes
3answers
40 views
How do I query a view from SQL server with Perl and DBD::ODBC?
I can query the SQL server DB fine. The problem happens when I try and query a view.
I'm not trying to do anything crazy:
$sql = 'select * from location_v';
$stj = …
0
votes
4answers
79 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 it already contains …
-1
votes
6answers
116 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, "/user/address") …
0
votes
5answers
123 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, @array3. I know how to …
0
votes
1answer
66 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. Is it possible to …
1
vote
3answers
121 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
92 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 escaping the parameters …
1
vote
4answers
86 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->connect(
…
3
votes
5answers
105 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 probably tried to do …
3
votes
3answers
105 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 {
my $sth = …
0
votes
3answers
116 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 have scraped together …
1
vote
4answers
139 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 the query is run.
…
0
votes
1answer
57 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-dataserver specific) Error …
0
votes
4answers
165 views
Why won’t this ISQL command run through Perl’s DBI?
A while back I was looking for a way to insert values into a text field through isql
and eventually found some load command that worked out for me.
It doesn't work when I try to execute it from Perl. …
