5
votes
How do I reference a scalar in a hash reference in Perl?
\$bar->{baz}
should work.
E.g.:
my $foo;
$foo->{bar} = 123;
my $bar = \$foo->{bar};
$$bar = 456;
print "$foo->{bar}\n"; # prints " …
3
votes
How do I know how many rows a Perl DBI query returns?
Why don't you just "select count(*) ..."??
my ($got_id) = $dbh->selectrow_array("SELECT count(*) from FROM bounce_info WHERE bi_exim_id = '$exid'");
Or to thwar …
2
votes
How can I get a list of indices on a SQL table using Perl?
There's a statistics_info() method in DBI, but unfortunately, the only DBD I've seen it implemented in so far is DBD::ODBC . So if you use ODBC (update: or PostgreSQL!) you're in luck. Otherwise sp …
0
votes
Why am I not able to query a database from a forked child in Perl?
You are asking for trouble by using the same db handle simultaneously in all of the child processes. You should be creating a new connection in each child.
Never mind...I read the rest of t …
1
vote
How do I insert values from a hash into a database using Perl’s DBI module?
There's an example in the docs
…
0
votes
How to Install DBD::Oracle in Strawberry Perl
If you don't have all of the Oracle source (*.h, *.c) files, you can install DBD::Oracle via ppm, just like ActiveState. Or copy the library files from the ActiveState distribution.
…
