oracle - How to deallocate cursor in PLSQL? -



oracle - How to deallocate cursor in PLSQL? -

i code on both sql server , oracle. when i'm coding in sql server, used this:

open curusers; close curusers; deallocate curusers;

now, when i'm coding in oracle, used this:

open curusers; close curusers;

i saw deallocate keyword in pl/sql when used statement

deallocate(curusers);

it throws error. how can same thing (deallocation) in pl/sql?

oracle doesn't require deallocate cursor's memory explicitly. close(cursor) fine.

oracle plsql cursor

Comments

Popular posts from this blog

javascript - THREE.js reposition vertices for RingGeometry -

javascript - I need to update the text of a paragraph by inline edit -

assembly - What is the addressing mode for ld, add, and rjmp instructions? -