i use pear::db to access oracle 9i,
now i want to do this:
select * from table and store rows into an array
table like this:
number id
2314 1
435123 2
32145 3
i want result array appears like this:
$array[2314]=1
$array[435123]=2
$array[32145]=3
help me how to code,thx in advance