Oracle JDBC connection string : how to hide password ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kona

    Oracle JDBC connection string : how to hide password ?

    Hello,
    I'm new with Oracle JDBC connection.
    Is it a way to crypt, hide the password string into a Oracle JDBC
    connection string ?
    The goal is to hide the password within script file.

    Thank's in advance
  • Soeren Degn Jahns

    #2
    Re: Oracle JDBC connection string : how to hide password ?

    Is it a way to crypt, hide the password string into a Oracle JDBC
    connection string ?
    The goal is to hide the password within script file.
    Why don't you build the connection string in your app and then store the
    encrypted password in your property file / configuration file. Then when
    you've loaded the encrypted password, you decrypt it and build your
    connection string.

    // Soeren


    Comment

    Working...