Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DBI. Get query results

Status
Not open for further replies.

JackTheRussel

Programmer
Aug 22, 2006
110
FI
Hi.

How can I get part of the SQL-query results save ?

Example If I get this kind of results:
Code:
Name: table1
Engine: MyISAM
Version: 10
Row_format: Dynamic
And I just would like to have these results in save:
Code:
table1
10

I found one module called: DBIx::DWIW, and I can take part of results save like this:
my $name = $table->{Name};
my $versio = $table->{Version};

But I don't want to use that module. How is it possible
to take results save in normal DBI ?

I know this is fuzzy question, but tell me I you don't fully understand.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top