
June 1st, 2000, 01:30 PM
|
|
Junior Member
|
|
Join Date: Jun 2000
Posts: 8
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Hi all, thanks a bunch for helping me out
last time. I got a quick question about
php ora functions.
say you do:
ora_plogon
ora_open
ora_parse(sql statement #1)
ora_exec(sql statement #1)
now the result set from Oracle is in the
buffer.
ora_fetch(out of cursor #1)
Here are my questions:
1) What type of cursor does php use for the
ora_exec?
2) What I'm concerned is whether I can reuse the cursor #1 with another sql statement?
Say after all the code above, I do:
ora_parse(sql statement #2)
ora_exec(sql statement #2)
ora_fetch(out of cursor #1)
3) after the above, which result set is in
the buffer?
4) even if I can, is it save or good to reuse
cursors?
I apologize if my question sounds elementary, and I hope someone could give me
some advice on this. Thank you.
-Will
|