empo
empo

Reputation: 1163

NHibernate config connection string info

What's the best way to store connection string info?

I'd rather not just store the db password in NHib.config file.

Upvotes: 0

Views: 12004

Answers (2)

Michael Maddox
Michael Maddox

Reputation: 12489

Use encryption on the password and/or connection string and store the encrypted password/connection string in a config file of some sort. Then use my answer here to add the connection string value to the NHibernate Configuration object after decrypting it:

How to load application settings to NHibernate.Cfg.Configuration object?

Like:

nHibernateConfiguration.SetProperty( 
  NHibernate.Cfg.Environment.ConnectionString,
  Util.Decrypt(encryptedConnectionString)); 

Upvotes: 5

Aim Kai
Aim Kai

Reputation: 2909

Generally you would put a password if you are connecting to say a sql server database with a sql login unless you decide to use windows authentication.

    <connectionStrings><add name="MyDbConn1" 
       connectionString="Server=MyServer;Database=MyDb;Trusted_Connection=Yes;"/>
<add name="MyDbConn2" 
      connectionString="Initial Catalog=MyDb;Data Source=MyServer;Integrated Security=SSPI;"/>
</connectionStrings> 

You should lock down the permissions/roles for what a sql server login can do.

If you have to use a sql server style login you could encrypt the password like this..

Encrypting Connection String in web.config

or some other links..

http://www.kodyaz.com/articles/Encrypting-in-web-configuration-file.aspx

http://www.codeproject.com/KB/cs/Configuration_File.aspx

http://www.velocityreviews.com/forums/t84120-how-to-encrypt-database-password-in-web-config-file.html

EDIT:

To use a connection string from a connectionstring element in the web.config file then this shows you..

http://www.martinwilley.com/net/code/nhibernate/appconfig.html

ALTERNATIVELY

use fluentnhibernate. :)

Upvotes: 1

Related Questions