Tagged Questions
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.
12
votes
10answers
1k views
Which Perl database interface should I use?
Is CPAN DBI the best database interface to use in Perl for general database use? Are there some better options?
6
votes
1answer
76 views
Can DBI statement handles use cached calls to execute()?
I have an application where the database rarely changes, and the application requires many reads from the database that is slowing down the performance quite significantly. Many of these reads are ...
6
votes
4answers
274 views
Does executing a statement always take in memory for the result set?
I was told by a colleague that executing an SQL statement always puts the data into RAM/swap by the database server. Thus it is not practical to select large result sets.
I thought that such code
my ...
6
votes
3answers
632 views
How can I pass MySQL functions as bind parameters in prepared statement?
I'm trying to do this:
$sth = $dbi->prepare('INSERT INTO table VALUES (?, ?, ?)');
$sth->execute(
$var1,
$var2 || 'NOW()',
$var3
);
without any luck. Any ideas?
6
votes
2answers
2k 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 ...
6
votes
3answers
1k 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 retrieve the required ...
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
1answer
97 views
How to connect mysql database and Sybase Database in one connection string in Perl?
I have connected both database, but used two connection string. Is there any possible to connect by using one connection string for both.
5
votes
3answers
128 views
Perl DBI: how to see failed query with bound values?
This is a standard inserting example from DBI manual:
my $query = q{
INSERT INTO sales (product_code, qty, price) VALUES (?, ?, ?)
};
my $sth = $dbh->prepare($query) or die ...
5
votes
5answers
158 views
What is wrong with accessing DBI directly?
I'm currently reading Effective Perl Programming (2nd edition). I have come across a piece of code which was described as being poorly written, but I don't yet understand what's so bad about it, or ...
5
votes
5answers
2k views
When to use $sth->fetchrow_hashref, $sth->fetchrow_arrayref and $sth->fetchrow_array?
I know that:
$sth->fetchrow_hashref returns a hashref of the fetched row from database,
$sth->fetchrow_arrayref returns an arrayref of the fetched row from database, and
...
5
votes
3answers
275 views
Reusing ?'s on a DBI prepare
Is there a way to reuse the ?'s used on a DBI prepare statement. Consider the following code:
$sth=$dbh->prepare("INSERT INTO mytable(a,b,c) SELECT ?,B(?),C(?)");
$sth->execute($a,$a,$a);
It ...
5
votes
2answers
290 views
How can I get 100% test coverage in a Perl module that uses DBI?
I am a bit new to the Devel::Cover module, but have found it very useful in making sure I am not missing tests.
A problem I am running into is understanding the report from Devel::Cover. I've looked ...
5
votes
2answers
882 views
What's the performance difference between DBI's fetchall_hashref and fetchall_arrayref?
I am writing some Perl scripts to manipulate large amounts (in total about 42 million rows, but it won't be done in one hit) of data in two PostgreSQL databases.
For some of my queries it makes good ...
5
votes
4answers
2k views
Is there an equivalent of PHP's mysql_real_escape_string() for Perl's DBI?
Could some tell me if there is a function which works the same as PHP's mysql_real_escape_string() for Perl from the DBI module?
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
3k views
Why can't DBD::SQLite insert into a database through my Perl CGI script?
I am running a SQLite database within a Perl CGI script which is being accessed by DBD::SQLite. This is being run as a straight CGI on Apache.
The DBI connection works fine and selects are able to ...
5
votes
5answers
6k views
How can I get a row count in DBI without running two separate calls to process?
I'm running DBI in Perl and can't figure out how, when I run a prepared statement, I can figure out if the returned row count is 0.
I realize I can set a counter inside my while loop where I fetch my ...
5
votes
3answers
280 views
How can I select rows that are null using bound queries in Perl's DBI?
I want to be able to pass something into an SQL query to determine if I want to select only the ones where a certain column is null. If I was just building a query string instead of using bound ...
5
votes
1answer
219 views
Is there a DBI proxy that handles SQL restrictions and transactions?
I am looking for a DBI (or similar) proxy that supports both SQL restrictions and transactions. The two I know about are:
DBD::Proxy
DBD::Gofer
DBD::Proxy
The problem I have found with DBD::Proxy ...
4
votes
1answer
114 views
How to determine Mysql connection ID in Perl?
I am trying to understand, do my modules share DBI connection to MySQL or no. I'd like to determine their connection ID. There may be better solutions (and i'd like to know them), but first question ...
4
votes
5answers
127 views
perl DBI and placeholders
I have this query "select * from table where ID in (1,2,3,5...)
how it possible to build this querty with the DBI using placeholders:
for example :
my @list =(1,2,3,4,5)
my $sql ="select * from ...
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
3answers
737 views
Perl DBI execute not maintaining MySQL stored procedure results
I'm having a problem with executing a stored procedure from Perl (using the DBI Module). If I execute a simple SELECT * FROM table there are no problems.
The SQL code is:
DROP FUNCTION IF EXISTS ...
4
votes
4answers
765 views
Does SELECT DISTINCT work with Perl's DBD::CSV?
I found a SELECT-example on the web.
When I try it in my script I get this error-message:
Specifying DISTINCT when using aggregate functions isn't reasonable - ignored. at ...
4
votes
3answers
2k 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 = ...
4
votes
5answers
829 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 ...
4
votes
2answers
448 views
Is there a database access library for C and/or C++ with a similar interface to Perl's DBI?
I'm willing to write a subset of Perl's DBI interface for libodbc (or unixODBC) in C++.
I believe doing so will allow me concentrate better on my goal.
BTW, I prefer avoiding to reinvent the wheel, ...
4
votes
2answers
352 views
Protecting against SQL tablename injection - how far is too far?
I'm developing a relatively small application to talk to PostgreSQL, and wanted to get some feedback on how far is too far to go with regards to protecting against SQL injection.
The application is ...
4
votes
2answers
930 views
How can I get a list of indices on a SQL table using Perl?
How can I get a list of the indices on a table in my sybase database using Perl? The goal is to "copy" all the indices from a table to a nearly identical table.
Is ...
4
votes
6answers
6k views
How do I know how many rows a Perl DBI query returns?
I'm trying to basically do a search through the database with Perl to tell if there is an item with a certain ID,. This search can return no rows, but it can also return one.
I have the following ...
4
votes
3answers
351 views
Why would the rollback method not be available for a DBI handle?
For some reason I am having troubles with a DBI handle. Basically what happened was that I made a special connect function in a perl module and switched from doing:
do 'foo.pl'
to
use Foo;
and ...
3
votes
3answers
103 views
How to check if the value in the mySQL DB exist?
I have a mySQL database and I have a Perl script that connects to it and performs some data manipulation.
One of the tables in the DB looks like this:
CREATE TABLE `mydb`.`companies` (
...
3
votes
3answers
157 views
Perl DBI insert multiple rows using mysql native multiple insert ability
Has anyone seen a DBI-type module for Perl which capitalizes, easily, on MySQL's multi-insert syntax
insert into TBL (col1, col2, col3) values (1,2,3),(4,5,6),...?
I've not yet found an interface ...
3
votes
1answer
65 views
What are the advantages of using DBIx::Connector over simply setting mysql_auto_reconnect to 1?
When dealing with persistant MySQL connections, the one problem is that they get dropped after a certain timeout (usually 28800 seconds).
DBIx::Connector seems to do the job of automatically ...
3
votes
1answer
75 views
SQLite: selectall_arrayref speed question
Is there a difference in speed between these two modi?
selectall_arrayref( "SELECT * FROM $table", { Slice => { a => 1, b => 1 } } );
selectall_arrayref( "SELECT a, b FROM $table", { ...
3
votes
2answers
140 views
A simple error in perl using dbi
I have a error in my prepare statement
$sqlst = $dbh->prepare('SELECT * FROM starter_trot WHERE UserId = 2345' ) or die "Couldn't prepare statement: " . $dbh->errstr;
...
3
votes
3answers
340 views
Dump prepared sql query from DBI statement in PERL
im using DBI in Perl to connect to my PostgreSQL Database.
Everything is working fine but in my debugging (printing results etc.) iam not able to see if the query prepared by perls DBI module is ...
3
votes
4answers
312 views
Identify a memory problem in Perl/DBI code
To start out with - this is not my code - there was a problem with the code and I'm trying to find out how to debug the problem. There are plenty of changes I would make to the code if I was given ...
3
votes
1answer
296 views
Find foreign key information using Perl/DBI/MySQL/InnoDB
I want to programmatically find the the foreign keys on a particular InnoDB table in my MySQL database.
I'm using Perl, and I stumbled across $dbh->foreign_key_info. I've just tried using it but ...
3
votes
3answers
190 views
In mysql, is “explain …” always safe?
If I allow a group of users to submit "explain $whatever" to mysql (via Perl's DBI using DBD::mysql), is there anything that a user could put into $whatever that would make any database changes, leak ...
3
votes
1answer
134 views
What is the relation of DBD::Mysql to ODBC?
In http://kobesearch.cpan.org/htdocs/DBD-mysql/DBD/mysql.pm.html there are certain references to ODBC but afaik DBD::mysql is "parallel" in the connection stack to DBD::ODBC.
Does anyone know why is ...
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 ...
3
votes
1answer
90 views
Perl's SQLite3: {NAME} not working?
Here's a snippet of code from an sqlite database application I'm working on:
my $query = "select * from pins";
my $sth = $dbh->prepare($query) or die "Couldn't prep: $DBI::errstr";
...
3
votes
2answers
590 views
ct_results() and ct_cmd_drop() error with Sybase::CTlib
I'm using Sybase::CTlib to query a Sybase server. However when I execute the following:
while( $dbr->ct_results($restype) == CS_SUCCEED ) {
if( $restype == CS_CMD_FAIL ) {
warn "Update ...
3
votes
1answer
170 views
How can I get DBD::Pg to time out reliably?
Why doesn't this code execute the signal handler until after $sth->execute completes? And more importantly, how can I fix it?
#!/usr/bin/perl
use strict;
use warnings;
use DBI;
use Sys::SigAction ...
3
votes
2answers
3k views
Why does Perl's DBI complain about “failed: ERROR OCIEnvNlsCreate” when I try to connect to Oracle 11g?
I am getting the following error connecting to an Oracle 11g database using a simple Perl script:
failed: ERROR OCIEnvNlsCreate. Check ORACLE_HOME (Linux) env var or PATH (Windows) and or NLS ...
3
votes
3answers
1k views
How do I insert null fields with Perl's DBD::Pg?
I have a Perl script inserting data into Postgres according to a pipe delimited text file. Sometimes, a field is null (as expected). However, Perl makes this field into an empty string and the ...
3
votes
2answers
84 views
Can Perl DBI connect to Redbrick?
Is there a way for DBI to connect to a RedBrick database? I don't see a driver anywhere, and there is very little discussion of this.
Thanks
3
votes
2answers
2k views
How can I get the column names when querying with DBI in Perl?
I'm using DBI to query a SQLite3 database. What I have works, but it doesn't return the columns in order. Example:
Query: select col1, col2, col3, col4 from some_view;
Output:
col3, col2, ...