3
votes
2answers
63 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 escap …
1
vote
4answers
54 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 …
3
votes
3answers
91 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 {
…
0
votes
3answers
77 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 ha …
3
votes
5answers
80 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 prob …
0
votes
1answer
41 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-dataserve …
1
vote
4answers
112 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 th …
1
vote
3answers
64 views
Is MySQL able to return mutiple result set with one query?
I have the following (returning two separate result sets) being successfully executed from a proc but cannot do the same when executing this as a basic query.
SELECT * FROM person …
0
votes
4answers
145 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 e …
0
votes
1answer
56 views
JRruby, Sybase JDBC and DBI - fetching column name with the AS clause issue
I have a ruby script which I run using the JRuby Interpreter.
The script connects to a Sybase database using DBI and Sybase JDBC (jTDS3.jar and jconn3.jar)
My problem is that I ha …
0
votes
3answers
139 views
Why am I getting ‘Error converting data type varchar to numeric’ on a floating point number in Perl?
We are inserting values into a SQL Server 2005 database column of type NUMERIC(19,5) from Perl. As long as the absolute values are .0001 or greater, it is working. However, when th …
0
votes
1answer
53 views
How do I create a table trigger with DBD::SQLite?
Can anyone provide syntax to create a table trigger preferably with DBI's do() method. It doesn't seem to like me putting everything on one line. Not sure what i'm doing wrong. Her …
3
votes
1answer
63 views
How do I use a variable for the name of a table in a DBI query?
How do I using a variable for the name of a table in a DBI query? I know how to use placeholders as part of the where clause, but how do I do this for the table name?
I would like …
2
votes
2answers
169 views
Why does $dbh->do(’VACUUM’) fail with Perl’s DBD::SQLite?
I want to do VACUUM at a certain time on a SQLite database under Perl, but it always says
DBD::SQLite::db do failed: cannot VACUUM from within a transaction
So how do I do th …
4
votes
2answers
140 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 r …
