Reputation: 837
I am writing a small DB utility. I would like to give the user the ability to open an instance of Oracle sqldeveloper directly from this utility. Is it possible to open Oracle sqldeveloper IDE that already connected to a specific DB?
Something like sqldeveloper USERID/PASSWORD@DATABASE
Upvotes: 13
Views: 23010
Reputation: 21
Luckily, yes. This is now possible using Oracle's ConnectionHelper extension.
It's a bit of hacky workflow, though. Hopefully they'll figure out a way to include in SQLDeveloper itself, because if management learns about adding a 'githubusercontent' repo they might misjudge the risks.
Also, be sure you make use of a pretty recent SQLDeveloper (20.2+).
But here goes:
https://raw.githubusercontent.com/bjeffrie/sqldev-update-center/master/update-center.xml
sqldeveloper -myCLIconnection=user/pw@host:port/service
[This is a combination of what's documented by Oracle's thatjeffsmith on his blog and what Oracle's Brian Jeffries put in Oracle's github repo.]
Upvotes: 2
Reputation: 22457
This is now possible with a free, open-source extension as long as you're using version 20.2 or higher of SQL Developer.
I have step-by-step instructions here
A quick GIF of it working...
Upvotes: 4
Reputation: 39
/? works rather than /h. There are options to override the cofiguration file so whether you can do that or not is probably determined by the facilities offered by the config file.
Upvotes: 2
Reputation: 10941
It doesn't seem so. sqldeveloper.exe /h
shows us possible launch parameters, and none of them seem to have anything in common with your demand.
Upvotes: 0