0
votes
1answer
65 views
Perl: Using DBI placeholders for ORDER BY clause
Can I use placeholders in a prepared statement for the order by clause of my query?
I'm guessing not, as I tried it, and it didn't seem to work, but it didn't throw any errors either, which seemed …
1
vote
1answer
48 views
How to implement sql LIKE qualifier with placeholdes for an array?
I am trying to implement sql LIKE qualifier with placeholders for a set of values. I know how to do it for one particular value as follows:
use strict;
use DBI;
my $dbh = …
0
votes
0answers
12 views
config.cache_classes = true affecting type coercion with RubyDBI
Environment:
Rails 2.3.2
DBI 0.4.1
DBD/ODBC 0.2.4
Scenario:
I have a Rails app that imports most of it's data from external SQL DBs into the Rails SQL DB via regular batch jobs. Those batch jobs …
2
votes
2answers
43 views
How to Install DBD::Oracle in Strawberry Perl
I am trying to install DBD::Oracle using the CPAN shell in Strawberry Perl. I initially experienced an error because the Makefile could not locate an OCI library, so I installed the instant client …
0
votes
4answers
113 views
How can I insert hash values in columns with Perl’s DBI?
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
45 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
94 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
130 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
1answer
71 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 …
0
votes
5answers
147 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 …
1
vote
3answers
155 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
107 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
92 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
3answers
114 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
1answer
61 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 …
