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

Delphi change the assembly code of a running process -

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

C++ 11 "class" keyword -