bunnyshell
bunnyshell

Reputation: 253

How can i disconnect from the DB when using sqlplus in emacs?

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

Answers (2)

Alen Oblak
Alen Oblak

Reputation: 3325

Type EXIT; and hit return. It should disconnect you from the DB and close the SQLPlus.

Upvotes: 5

Mark J. Bobak
Mark J. Bobak

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

Related Questions