Does this help? This is what I'm currently doing...
Example table called 'users':
1,dennis,craig,dennis@ultradns.com
2,clown,bozo,bozo@circus.com
3,clinton,bill,pimp@whitehouse.com
$query = OCIParse($yourconnection,
"SELECT * FROM users"
);
OCIExecute($query)
$i = 1;
while (OCIFetchInto($query, $result_array) ) {
$result[$i] = $result_array;
$i++;
}
$result[1][1] should be 'dennis'
$result[3][3] should be 'pimp@whitehouse.com'
You get the picture, not sure if this is what you wanted and there's probably a better way to do it.
Dennis