JackTheRussel
Programmer
Hi.
How can I get part of the SQL-query results save ?
Example If I get this kind of results:
And I just would like to have these results in save:
I found one module called: DBIx:
WIW, 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.
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
Code:
table1
10
I found one module called: DBIx:
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.