Update:
Yes, but do you fetch a result if you say SELECT 'foo'? Please feel free to provide more information about what you want to do. I then can try to repeat this with my MSSQL...
I could not repeat it (i'm using SQL Server Native Client 10.0):
SELECT * FROM FXSpots;
ID LHSCurrencyID RHSCurrencyID TenorID BBTicker WMRic C
+orrespondingSpotID
6 1 1 1 foo bar 1
7 1 1 1 foo bar 1
8 1 1 1 foo bar 1
9 1 1 1 foo bar 1
10 1 1 1 foo bar 1
11 1 1 1 foo bar 1
12 1 1 1 foo bar 1
#!c:/perl/bin/perl.exe
use DBI;
my $dbh = DBI->connect("dbi:ODBC:Market_Data_prod", "karl", "secret");
my ( $bbt, $wmr );
my $sql = 'select BBTicker, WMRic from FXSpots where id = 10'; # i can
+ get all..
my $sth = $dbh->prepare($sql);
$sth->execute() || die "ERROR Unable to execute sql statment $sql...+"
+;
$sth->bind_columns( \$bbt, \$wmr );
$sth->fetch;
# print ("BBticker = $bbt WMRic = "); # ...you missed $wmr
print("BBticker = $bbt WMRic = $wmr");
__END__
C:\Dokumente und Einstellungen\karl\Desktop\market_data>market_data.pl
BBticker = foo WMRic = bar
Sorry that i could not help, Regards, Karl
«The Crux of the Biscuit is the Apostrophe»
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|