In the following code, the statement, "
print FH $data{name};" does not print anything. I do have a column in my table named 'name'. This has to be a simple error. I should add that I have printed out the generated SQL statement and it works fine. I should be able to assume that my session was successful with RaiseError set to one correct?
############################################################
sub getInfo
############################################################
{
my $dbtable = shift;
my $function = shift;
my $where = shift;
my ($dbh, $sth, @datetime, @date, $name, %data);
my $i=0;
$dbh=DBI->connect('DBI:ODBC:Servers', { RaiseError => 1, AutoCommit =>
+ 0 });
my $sth = $dbh->prepare( "$function FROM $dbtable $where" );
$sth->execute;
$sth->bind_columns( \( @data{ @{$sth->{NAME_lc} } } ));
$sth->{'ChopBlanks'} =1;
@datetime = split(' ', $data{submit_date});
@date = split(/-/,$datetime[0]);
my $userid = $data{name};
my $username = findADname($userid);
open(FH, "> SQLoutput.txt")or die("Couldn't open SQLoutput.dat\n");
print FH $data{name};
print FH "Hello";
close FH;
$sth->finish();
$dbh->disconnect(); #----Needed to free up system resources.
}
Thanks for your help,
the hoksila
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.