java - How to enable SSL for Oracle connections in JDBC from Rails? -


i have rails application (running on jruby) connecting oracle database, database.yml looks this:

default: &default   adapter: jdbc   username: ...   password: ...   driver: oracle.jdbc.driver.oracledriver  development:   <<: *default   url: jdbc:oracle:thin:@host:1526 

as far i'm aware, oracle supports using tls connect database, how enable in database.yml?


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -