Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Oracle:  CURSOR cursor_name IS select-statement;   OPEN cursor_name

MySQL:   BEGIN  DECLARE my_cursor CURSOR FOR select-statement << can't be prepared statement>>; OPEN my_cursor; END