All,
I have a simple sql process in Perl that returns distinct id's. If I
+load the id's into an array via a $row = $query->fetchrow_array, it d
+umps ALL of the values from the one column into arry index '0' / $ro
+w[0]. Is there a way to read in / fetch a distinct column of values
+from a query and place each element / item in a different array index
+....$row[0],$row[1],.....$row[n]! The data is currently in $alignmen
+t. I can load the data into an array and it is fine.
Query Return:
i.e. $alignment = 'A01','B22','C99',....'nth'.
$row[0] = 'A01', $row[1] = 'B22', $row[2] = 'C99'...$row[n]
Finally, I am doing this to pass those id's to my Perl adn Sql code.
+This process will keep me from setting up several perl processes for
+the same thing. Please help....
##################################
#
# Connect to Oracle database.
#
###################################
my $connection = DBI->connect('dbi:Oracle:xxxx','xxxx','xxxx',)
|| die "Database connection not made: $DBI::errstr";
############################
#
# Set up Query for Store
#
############################
my $stmt_1 = "select alignment from rd_n_dm_list";
############################
#
# Prepare Query
#
############################
my $query = $connection->prepare($stmt_1);
############################
#
# Execute Query
#
############################
$query->execute() or die $connection->errstr;
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, 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
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.
|
|