The DBI is a database access module for the Perl programming language. It defines a set of methods, variables, and conventions that provide a consistent database interface, independent of the actual database being used.
0
votes
2answers
35 views
Perl - DBI and .pgpass
I can successfully create a connection to a Postgres db using the following:
my $settings = {
host => 'myhost',
db => 'mydb',
user => 'myuser',
passwd => 'mypasswd'
};
...
1
vote
3answers
52 views
Using selectall_hashref as I would selectall_arrayref
I'm doing some exercises to increase my Perl skills and one of them involves connecting to an SQL database, running a query, and returning the results as an array. This is what I have so far:
my ...
1
vote
0answers
43 views
Connecting to Oracle from Strawberry Perl
I installed DBD::Oracle from CPAN and tried to use the code below to connect to Oracle DB:
use DBI;
use DBD::Oracle;
BEGIN {
$ENV{ORACLE_HOME} ='C:\instantclient_11_2';
...
-1
votes
0answers
41 views
SQLite connecting to database error
I want to select something from SQLite database and print it to website in perl.
This is my source:
use warnings;
use strict;
use CGI;
use DBI;
my $filename = './dataperl.db';
my $dbh = ...
0
votes
1answer
37 views
Perl - Connect to PostgreSQL Database - Failing to find proper socket
I can connect fine with PHP and locally using Psql, but Perl does not.
my $dbh = DBI->connect("DBI:Pg:dbname=mydb,host=localhost:5432","user","pass",{'RaiseError' => 1});
I believe the ...
0
votes
1answer
47 views
Creating my own implementation of DBI::Iterator in perl
UPDATE:
Right now I am trying to take in to an array around 120M of rows. Reason I'm not doing this over UTL_file is because in our production server it requires oracle user access to write and move ...
0
votes
0answers
56 views
Why do I get “ORA-00932: inconsistent datatypes: expected - got -” when using COLLECT() in a prepared statement?
I am using this query with the Perl DBI:
SELECT c.change_id
, COLLECT(t.tag) AS the_tags
FROM changes c
LEFT JOIN tags t ON c.change_id = t.change_id
WHERE c.project = ?
GROUP BY ...
1
vote
0answers
77 views
is it possible execute a perl script with admin rights or as a specific user?
I'm writing a perl script in which I've to shutdown my mssql server ,do some operation and then I've to restart it.I know 1 way is to use netstat to stopt the service but I cann't use that. So I tried ...
1
vote
2answers
28 views
Error while running sql statement on a sqlite3 db using Perl DBI
I am trying to run a select statement to a sqlite3 database using Perl DBI. The following is the code:
my $dbh = DBI->connect( "DBI:SQLite:dbname=./GenBankData.db" , "" , "" , { PrintError => 0 ...
2
votes
1answer
53 views
Why does perl DBI returns 0 rows when statement from trace returns 1
I have been working with perl DBI for the first time this week.
Majority of queries / inserts are working okay, however I am having issues with one specific query that is returning 0 rows. When I ...
0
votes
1answer
50 views
Shutdown MSSQL server from perl script DBI
I'm writing a perl script in which I've to shutdown my mssql server ,do some operation and then I've to restart it.I know 1 way is to use netstat to stopt the service but I cann't use that.
So I tried ...
1
vote
2answers
60 views
Use executed statement to insert results in another table (Perl DBI and MySQL)
I have the need to execute a query in MySQL using Perl and DBI and insert the results in another table. The second table is created on the fly to define the same number of fields that the original ...
4
votes
0answers
79 views
Perl SQLite error handling: taking different actions according to the error code
I'm new to Perl programming (and to SO too) so my question may be formulated in a bad way, but I really have read a lot of books and tutorials and I haven't found anything addressing (even ...
1
vote
2answers
79 views
Perl Modules - Sharing Database Connection
Can someone give me some direction on the best way to do when sharing a $dbh variable between "objects" in different .pm files.
For instance, my main module say Foo.pm has a new constructor, etc and ...
0
votes
2answers
63 views
Perl script using DBI module to access differently installed MySQL
So I am using Perl DBI module to access MySQL database on a server linux machine, which I do not have root access. The admin installed the MySQL and create a database for me. I can write a perl script ...
0
votes
2answers
64 views
Is there a way to set inheritance in the same module with __PACKAGE__->?
For example I want to store the data for a dbi connection on startup so I do not have to initialize it through an object, is their a way to do this in the same package?
Initializing through my object ...
0
votes
3answers
51 views
Perl - DBI - MySQL - Easy way to get row id after update?
Is there an easy way to get the id of the row that was affected by an update statement from DBI? In this particular case, it will always be either 0 or 1 row. I didn't want the expense of having to ...
0
votes
0answers
82 views
Error ORA-12154 on DBI->connect to Oracle database with Oracle Instant Client in Solaris 10
I've been pulling my hair out over this problem for two days now:
I'm trying to get a perl script to interface with an Oracle database. I have a new server I'd like to deploy my application on. ...
0
votes
1answer
75 views
SQL Server backup command fails via Perl/DBI but works via DOS> SqlCmd. Why?
I have a simple Perl/DBI program to backup SQL Server databases. The program runs cleanly,
produces no errors, supposedly creates database backups, but the backup files do not exist!
When I execute ...
0
votes
2answers
76 views
Selecting distinct values from key/value pairs in a seperate table
I have 2 database tables
JOBS(JOB_ID, JOB_TIME, JOB_NAME,...), JOB_PARAMETERS(JOB_ID,NAME,VALUE)
where JOB_PARAMETERS is essentially a map containing job parameter key value pairs.
Every job may ...
-2
votes
1answer
89 views
Does the DBI fetchrow_array method in Perl have any max size limit?
I am using the fetchrow_array method from the DBI module to fetch some data using Perl.
It fetches a maximum of 850,000 rows, but the actual size of data is 6.4 million rows.
What should I do?
2
votes
1answer
69 views
How to pull data from remote server database in rails?
I am using tiny_tds for connecting to remote database, which is only used for MySQL and Sql server. Is their is any other gem available which can access any vendor database?
3
votes
0answers
68 views
DBI::InterfaceError: Could not load driver (uninitialized constant MysqlError)
I have included gems,
dbd-mysql (0.4.4)
dbi (0.4.5)
mysql (2.8.1)
on rails console when I run the following code,
require 'rubygems'
require "dbi"
require 'dbd-mysql'
dbh = ...
1
vote
2answers
60 views
Perl - CGI::Application - Create session variables from database
I have a bunch of configuration variables stored within a database, key value pairs accessable via the following query:
select * from conf_table;
I want to load these key/value pairs into a ...
2
votes
2answers
108 views
Perl Module Instantiation + DBI + Forks “Mysql server has gone away”
I have written a perl program that parses records from csv into a db.
The program worked fine but took a long time. So I decided to fork the main parsing process.
After a bit of wrangling with fork ...
0
votes
1answer
39 views
Getting 2 different lengths for a text field in perl from a DBI query
I have encrypted data in a mysql table stored as a text field.
Everything was originally written in Windows perl and that still works without issue.
My problem is that I am running the same code on ...
0
votes
1answer
70 views
perl + mysql Lost connection to MySQL server during query
It seems a common problem and I've searched a lot but haven't successfully find any solution to my situation. Tried mysql_auto_reconnect and connect_cached but did not help. This is basically the code ...
0
votes
1answer
77 views
(Perl) Create query for DBI with SQL::Abstract
I want to add new record to table1 on SQLite
use SQL::Abstract;
my %data = (
id => \'max(id)', # it is doesn't work so which variant is right?
record => 'Something'
);
my $sql = ...
0
votes
1answer
71 views
How to get information from log files and add them to database table using Perl DBI sqlite
I have this assignment which requires me to take the source ip and destination port from this log file and add them to a database table i created using Perl dbi sqlite.
i have tried to write a script ...
0
votes
1answer
62 views
How to load SQLite3 database with log file entries using perl
I have an assignment In my Perl class that contains two programs, the first is to create a database and table using the DBI::SQLite for Perl, i have already completed the first part of the program, ...
-3
votes
2answers
60 views
Creating Table in database from Perl using SQLite3
I'm having trouble creating a table in a database I created with Perl using dbi sqlite3. Using the code I have below, I want the table to contain port-probes, one line for each source ip and port. I ...
1
vote
1answer
50 views
Using Ruby to access a SQLAnywhere 12 database(either DBI or SQLAnywhere gem)
I am trying to use either the gem dbi or sqlanywhere gem to access a SQLAnywhere 12 database on a Windows 64-bit machine. The database is running locally. I have been completely unsucessful & any ...
2
votes
2answers
114 views
select count(*) not working with perl DBI
The goal of my code is to return a count of the number of rows in a table based on one specific parameter.
Here is code that works:
######### SQL Commands
### Connect to the SQL Database
my $dbh = ...
0
votes
3answers
122 views
perl execute sql file (DBI oracle)
I have the following problem, i have a SQL file to execute with DBI CPAN module Perl
I saw two solution on this website to solve my problem.
Read SQL file line by line
Read SQL file in one ...
2
votes
1answer
82 views
Perl DBI - DB2 : fetchrow failing for 0 records
I'm migrating AIX scripts to Linux.
In a particular script
$sql_stmt6 = "SELECT CHAR(DATE(MAX(TIMESTAMP)),USA) FROM SCHEMA.TABLENAME WHERE COL1 = 194 and COL2 ='P'";
$sth6= ...
1
vote
2answers
52 views
How to make sure a query executed successfully
I need to execute a select statement query and capture the returned result and store it in a variable.
The execute isn't returning any data. I have checked my connection is correct since it's not ...
2
votes
1answer
68 views
Connect to database using perl
I have one script in which I am connecting to database and trying to eexecute the sql query. My code is like this
use DBI;
$dbh = DBI->connect('Databasename', 'uid','pswd');
my $sth = ...
0
votes
1answer
68 views
perl DBI->connect pops “no route to host” although i can pick host
I have this perl script
wrapper.pl
#!/usr/bin/env perl
use strict;
use warnings;
use Getopt::Long;
use DBI;
# input params
my $end;
my $start;
my $url;
my @IP;
my $host = "localhost";
my $dbname = ...
1
vote
2answers
68 views
DBI/DBD::mysql/mysql_type_name: How to distinguish between Blob and Text?
This example outputs two times "blob". How could I find out, if the datatype of a column is TEXT?
#!/usr/bin/env perl
use warnings;
use strict;
use DBI;
use Data::Dumper;
my$dbh = DBI->connect( ...
1
vote
3answers
100 views
Addition of rows in CSV File periodically
OVERVIEW:
1. In Perl, I am using Spreadsheet::WriteExcel to write into Excel created CSV Files.
2. The data to be fed into the CSV File is being generated from Mysql queries.
WHAT IS HAPPENING:
1. ...
0
votes
2answers
87 views
[perl]How to force perl use modules in my own path?
I want to let perl use the DBI module in my own path(suppose, /home/users/zdd/perl5/lib/DBI), but the sysem also has a DBI module which is /usr/lib/perl5/lib/DBI.
when I write the following code in my ...
-1
votes
1answer
53 views
Querying multiple times in Oracle using perl returns only the first query
Note: I have corrected the variable differences and it does print the query from the first set but it returns nothing from the second set. If I use the second set only it works.
In the code below, I ...
0
votes
1answer
97 views
Relating ID's in relational table
I have these two insertion queries in Perl using the DBI module and DBD:mysql.
This one inserts fields url, html_extr_text, concord_file, and sys_time into table article:
my @fields = (qw(url ...
1
vote
0answers
16 views
What is a DBI and what is it used for?
I'm wondering what is DBI, what is it used for and is there such thing as "DBI database"
0
votes
0answers
33 views
Using Ruby for Appending statements for execution in batches causing loop confusion
I am new to Ruby scripting and ruby in general. I am writing a program that will insert data into table using the dbi gem in ruby. I am attempting to append to the sql string a bunch of inserts to ...
1
vote
1answer
47 views
Which is better in coding, one long db connection and passing the object around, or multiple short db connections?
I'm writing a ruby script that will be connecting to one database, in multiple tables, and I'm not sure which is better:
Having one connection and passing the object around
Having a connection ...
1
vote
2answers
90 views
Relational table with perl dbi module
I'd like to make a relational table with perl between this two tables and insert in it data :
$create_query = qq{
create table article(
id_article int(10) auto_increment NOT NULL,
...
0
votes
0answers
64 views
relational table from perl dbi
I'm using DBI module in perl and I have a problem that I cannot wrap my mind around it. Lets say I have this table called 'article', which I fill with some data collected from different files, the ...
0
votes
1answer
142 views
Access denied error when connecting to remote MySQL server using Perl DBD-mysql
I attempt to connect to a remote MySQL server with Perl DBD-mysql module. The client is under Windows, so before connecting with Perl, I did some tests with Windos cmd line:
mysql -h xx.xx.xx.xx -u ...
0
votes
2answers
245 views
perl DBD::mysql not working with mysql 5.6?
I installed MySQL 5.6.10 onto Mac OSX 10.8.2, in /usr/local/mysql-5.6.10-osx10.7-x86_64/. I then tried to run a Perl program that connects to a MySQL database using DBI and DBD::mysql. I got the ...



