in reply to $ODBC->FetchRow() question?

Do I understand that your database has multiple columns and your query was a multiple-column query, like "SELECT source_mail,hostname,machine_name FROM ..."?
If that's the case then,
$db->FetchRow()
is just returning one single value from the columns returned and using
@hydra_data ->FetchRow_Array()
instead will put each column's value in a separate element of @hydra_data, then you won't have to split yourself.

Replies are listed 'Best First'.
Re^2: $ODBC->FetchRow() question?
by blackadder (Hermit) on Dec 09, 2004 at 09:28 UTC
    Thanks Brother,...This worked very well and I have learnt something new.

    Blackadder