How do i call Oracle fields by name? like in mysql you can say:
while ($row = fetch_array($query)){
echo $row[field_name1] . " " . $row[field_name2];
}
I have a workaround that counts the columns and prints out all row contents based on the number of columns for each entry, but i'd like to reference by field name.
Is this possible?