Tagged Questions
The dbd tag has no wiki summary.
5
votes
3answers
96 views
%ENV doesn't work and I cannot use shared library
I cannot use %ENV var on my Perl script to use Oracle libs.
BEGIN {
$ORACLE_HOME = "/usr/lib/oracle/10.2.0.3/client64";
$LD_LIBRARY_PATH = "$ORACLE_HOME/lib";
$ORACLE_SID="prod";
...
5
votes
2answers
2k 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 ...
5
votes
3answers
848 views
How can I UPDATE rows returned by a SELECT in a loop?
I have a loop on the rows returned by an SQL SELECT statement, and, after some processing on a row's data, I sometimes want to UPDATE the row's value. The processing in the loop's body is ...
5
votes
1answer
1k views
Why doesn't DBD::Sybase's Makefile.PL find freetds?
I'm having trouble trying to install DBD::Sybase on Redhat. Perl version is 5.8.8 and it is the 64-bit version. When I set the SYBASE env variable to the freetds libs in /usr (the rpm puts libtds in ...
4
votes
3answers
2k views
Installation error for DBD::MySQL on OSX v10.6.6
I'm attempting to get DBD::MySQL working on Snow Leopard (v10.6.6). The default version of Perl that comes with the OS is v5.10.0. Since I've read that's 64-bit, I went ahead and downloaded and ...
4
votes
6answers
3k views
How do I fix “Symbol not found: _is_prefix” when compiling Perl's DBD::mysql?
First I wanted to build the DBD::mysql package. That kept failing because whatever make resulted in could not be loaded for the tests with a Symbol not found: _is_prefix. So I assumed that cpan might ...
3
votes
2answers
315 views
Connecting to Teradata via Perl
Has anyone had any success with this? There aren't a great deal of references online and I've exhausted every relevant result on Google. Here's my script:
#!/usr/bin/perl
use DBI;
use DBD::ODBC;
...
3
votes
1answer
90 views
how to fake a perl module for dependency?
An external Perl library that I am using has a dependency (DBD::mysql) that I will not be using in my application (DBD::SQLite), so I would like the system to just pretend the dependency is there, ...
3
votes
3answers
171 views
How can I access two Oracle databases with different versions (8i and 9) using perl?
I'm currently accessing an Oracle database version 9i (9.2.0.8.0) using perl modules DBI (1.613) and DBD::Oracle (1.26). The current scope of the project now requires that I access a version 8i ...
2
votes
2answers
225 views
Perl - Too many files error when using DBD Oracle
Can someone advise on why I get errors opening the file in the code below. The errors start about half way through the 9th iteration of 25 threads, and are "Too many open files" errors. The error ...
2
votes
1answer
285 views
How I can connect to Oracle from Perl?
We have Oracle Server " Oracle Version: 10.2.0.4.0 - 64bit". I like to connect to this server with Perl from my RHEL machine. I am able to connect via sqlplus successfully. I can use 32-bit or ...
2
votes
1answer
1k views
Manually connect to PostgreSQL with Ruby
Connecting to postgres with rails was no big deal. rails -d postgresql app_name, setup the database.yml and voila. I cannot, however, use postgres with just a little test script
I've tried ...
2
votes
5answers
1k views
What is the difference between DBI and DBD?
Can someone please shed some light on what exactly is DBI and DBD? When should either one be used and the benefits of using one over the other.
1
vote
2answers
144 views
missing mysql_config error while installing DBD::mysql
I saw Trying to install Perl-Mysql DBD, mysql_config can't be found, and tried to locate mysql_config, but didn't find it. So, I tried to install mysql-devel, and then I get this error-
...
1
vote
3answers
59 views
how can I insert C structures that have character pointers into DBD file
I am changing from a file system I made into DBD.
And I had no choice to convert structures that have character point members
to insert these structures into the DBD file
for examble,
If there is a ...
1
vote
2answers
485 views
Anyone been able to install DBD::mysql on Mac Snow Leopard with i5 Processor?
I'm trying to install DBD::mysql using most of the popular methods, including sudo cpanm -S DBD::mysql. However, I am having some serious problems with this and I am beginning to think it might be my ...
1
vote
2answers
81 views
Problem with DBD and mysql in perl
Please I am having problem tracking down the problem with this code I have been trying for hours . it gives me the error DBD::mysql::st fetchrow_hashref failed: fetch() without execute() at line 15
...
1
vote
1answer
447 views
DBD::Oracle and DBI error in perl
I am having a strange issue here with perl and DBI module. I can get the query successfully sometimes, but sometimes, when I add a line of code which is remotely related to database access or anything ...
1
vote
4answers
832 views
How do you install perl DBD::Oracle on OSX Snow Leopard 10.6
Im trying to connect to Oracle 10.2.0.4 on a remote system from my intel mac running OSX 10.6 snow leopard. Ive tried using perl CPAN to install DBD::Oracle (DBI worked ok) but get compilation errors. ...
1
vote
1answer
387 views
Character set problems with Perl, DBD::Oracle and Oracle 10g
We have a problem with characters outside of the basic ASCII set appearing as upside down question marks in our Oracle 10g database.
I have the following script to load some test data. The script is ...
1
vote
1answer
951 views
Why does SQLite give a “database is locked” for a second query in a transaction when using Perl's DBD::SQLite?
Is there a known problem with SQLite giving a "database is locked" error for a second query in a single transaction when using Perl DBD::SQLite? Scenario: Linux, Perl DBI, AutoCommit => 0, a ...
1
vote
2answers
321 views
Why can't Perl's DBD::DB2 find dbivport.h during installation?
We are using a Perl utility to dump data from DB2 database. We installed DBI package and it is asking for DBD package also.
We dont have root access and when we try to install DBD package we are ...
1
vote
2answers
459 views
DBD::Oracle and utf8
I have some troubles inserting an UTF8 string into an oracle 10 database on Solaris, using the latest DBD::Oracle on perl v5.8.4.
This are my DB settings
> --------SELECT * from ...
1
vote
2answers
276 views
DBD::Oracle causing corruption to System calls?
Seeing some strange behavior, whereby connecting to Oracle database, and then calling external function, the value of $? is always -1.
Problem machine is running standard AIX5.3, with DBD::Oracle 1.20 ...
1
vote
1answer
241 views
Why does my DBI program complain about 'Undefined subroutine &DBD::Pg::db::_login'?
I am trying to use PostgreSQL database for storing Apache's session information, but I can't get it to work. It is failing with the following error:
Undefined subroutine &DBD::Pg::db::_login
...
0
votes
1answer
31 views
perl packaging dbd mysql module in script
I have a script and keep all external modules local so I can then package my entire script in a zip and have it work on all machines without having to install all the modules on different machines.
I ...
0
votes
0answers
42 views
Perl DBD::CSV db handler same scope
In my one of perl script, I have two subroutines being called from main . The perl compiler is flagging under below warning
"my" variable $dbh masks earlier declaration in same scope
for ...
0
votes
1answer
58 views
MySQL Errorcode 2 in Perl script
I have created an ETL tool in Perl. There are three database servers to which ETL tool is communicating, say dbserver1 (OLTP server - Windows Box), dbserver2 (staging server - linux Box), dbserver3 ...
0
votes
2answers
60 views
What is the maximum NUM_OF_PARAMS in Perl DBI placeholders
What is the maximum number of placeholders is allowed in a single statement? I.e. the upper limit of attribute NUM_OF_PARAMS.
I'm experiencing odd issue where I try to tune the maximum number of ...
0
votes
2answers
113 views
Special character handling when fetching data from MS SQL Server using Perl DBD
I have an MS SQL Server 2008 Database, from which I am fetching data using perl DBD::Sybase module. But there are some special characters in the DB, like the Copyright symbol, Trademark symbol etc., ...
0
votes
1answer
60 views
Perl DBD::mysql 'mysql_use_result' OK to use while inserting to another table?
I'm doing a large join in mysql, and then acting on the resulting data and writing it to another table. Right now, I'm using the default mysql_store_result, but the $sth->execute() after the query ...
0
votes
2answers
28 views
Is there a bug with mysql's (or DBD's) handling of umlaute in a Primary Key?
I have something that I don't understand.
Here is a piece of code:
use warnings;
use strict;
my $db_name = 'xxx';
my $user = 'xxx';
my $pw = 'xxx';
use DBI;
my $dbh = ...
0
votes
1answer
459 views
Perl script raising oci.dll error, DBD
I have perl script which connects to an Oracle database, opens a text file and loads the data from the file in a database table, the script works perfectly on my development machine (windows xp 32 ...
0
votes
2answers
462 views
Suppressing connection error with DBI and DBD:ODBC SQL Server Native Client 10.0
Writing a script to get SQL Server instance names from a table, then attempting to connect to each of these instances to pull back database configuration information. All database instances involved ...
0
votes
1answer
563 views
How do I check if a database row exists using DBD::mysql and Perl?
I'm working with a MySQL database and need to check if a row is already there before deciding which queries to run.
The table I'm working on is something like this:
player(playerid, nickname, data1, ...
0
votes
1answer
243 views
Async queries with DBD::Pg fail with: Cannot execute until previous async query has finished
I'm using CentOS 5.5 Linux (same as Redhat 5.5)
with stock perl v5.8.8 and have installed
DBD-Pg-2.17.1 via CPAN shell and I'm using
postgresql-server-8.4.5-1PGDG.rhel5 and friends.
I have prepared a ...
0
votes
2answers
682 views
Why do I get “Can't call method ”fetchrow_array“ without a package or object reference”?
I have installed DBD::Pg version 2.17.1 but still still getting error while using below code
$res = $conn->prepare($query);
$res = $res->execute();
@tuple = $res->fetchrow_array;
error:
...
0
votes
1answer
332 views
How can I manually Installing DBD-Oracle 1.17 in ActivePerl on Windows?
After installing Active Perl 5.8.8 Build 822 on WindowsXP, I do not see DBD-Oracle in "View All Packages" of Perl Package Manager.
The CPAN location of the same is ...
0
votes
2answers
441 views
Using php to connect to mysql using mod_dbd
I would like to use mod_dbd to implement connection pooling for my php application. I am able to define the mod_dbd module for apache and I can see the connections that it is opening, but I am not ...
0
votes
2answers
165 views
DBD::CSV: Returns header in lower case
I've got a problem with the module DBD::CSV v0.30.
Since a update to the newes version, all headers in the fetchrow_hashref generated hash are lower case instead of mixed case.
Finaly the data will ...
0
votes
2answers
290 views
Catalyst create schema can't connect but I can
So I can connect with (obviously I replaced all the real values)
mysql -u username -p -h db.dbhostname.com dbname
But when I run Catalyt's create script I get
./script/dasgift_create.pl model DB ...
0
votes
2answers
112 views
Question about DBD::CSB Statement-Functions
From the SQL::Statement::Functions documentation:
Function syntax
When using SQL::Statement/SQL::Parser directly to parse SQL, functions (either built-in or user-defined) may occur anywhere ...
0
votes
3answers
401 views
DBD::CSV: Problem with file-name-extensions
In this script I have problems with file-name-extensions:
if I use /home/mm/test_x it works, with file named /home/mm/test_x.csv it doesn't:
#!/usr/bin/env perl
use warnings; use strict;
use 5.012;
...
0
votes
3answers
702 views
Perl DBD::ODBC Issues with Oracle Date Formats
I am using Perl's DBD::ODBC to connect to an Oracle database. However, an issue arises when I try to execute a select query using a date in the where clause. It seems this issue occurs because of ...