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

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -