Reputation: 253
I'm trying to use sqlplus in Emacs. It works fine. But I don't know how I can disconnect from the DB once I started the sqlplus session.
I'm using sqlplus mode: http://www.emacswiki.org/emacs/SqlPlusMode
Upvotes: 4
Views: 10058
Reputation: 3325
Type EXIT;
and hit return. It should disconnect you from the DB and close the SQLPlus.
Upvotes: 5
Reputation: 14393
I'm not familiar with Emacs sqlplus mode, but, in SQL*Plus, you can simply type 'disconnect' if you want to disconnect the current session without exiting SQL*Plus.
Upvotes: 3