walkabout21
walkabout21
Atleast not without writing specific Oracle exceptions into db#connect which would be ugly.
I guess I can do an initial executable() check in the function that sets the default cmd. I'll try that.
adding an executable() check for 'sql' to the db#adapter#oracle#interactive function like the following works ```vim function! db#adapter#oracle#interactive(url) abort let url = db#url#parse(a:url) let sql_bin = 'sqlplus' if executable('sql') let sql_bin...
@tpope added PR for this change. Checked docs but there is no reference to the default binaries so I did not see any need for updates. Left SQLPLUS as the...
@tpope , just checking if you need any revisions on this. Would have like to have included some kind of "opt out" for sqlcl, but not sure how it could...
That makes sense. I didn't see anything about that in the docs so I could roll back my code revision and just add the opt in config info to the...
@tpope I rolled back the code change and added a note in the documentation explaining how to override sqlplus as the default binary
This is my use case as well. I end up copying code from my repo into the note to run and then copying back if I need to make edits....