nhibernate change connection

http://stackoverflow.com/questions/4335827/changing-nhibernate-connectionstring

http://stackoverflow.com/questions/491139/how-do-you-change-nhibernates-connection-string-per-http-request

http://jasondentler.com/blog/2009/11/authentication-impersonation-and-dynamic-nhibernate-connection-strings

 

 

http://www.nhforge.org/wikis/howtonh/dynamically-change-user-info-in-connection-string.aspx

Dynamically change user info in connection string

In some cases our clients has to use the same database user id in each connection, so they can use audit and security features of their database system (and their DBAs will be happy [:)]).

To do that in Nh We can use the ConnectionProvider facility. Just derive a class from the standard DriverConnectionProvider class:

 

public class DynamicConnectionProvider : DriverConnectionProvider
{
 private string _connectionString;
 public override void Configure(IDictionary<string, string> settings)
 {
 
  // Connection string in the configuration overrides named connection string
  if (!settings.TryGetValue(NHibernate.Cfg.Environment.ConnectionString,out _connectionString))
 _connectionString = GetNamedConnectionString(settings);
 
  if (_connectionString == null)
  {
   throw new HibernateException("Could not find connection string setting (set " 
    + NHibernate.Cfg.Environment.ConnectionString + " or " 
    + NHibernate.Cfg.Environment.ConnectionStringName + " property)");
  }
  ConfigureDriver(settings);
 }

 

This is necessary because the original connection string is private, but just copy the code from base method.

The real magic is in "ConnectionString" property, it is called when nh has to connect in a Session. You have to override it so you can make the changes you need.

 

protected override string ConnectionString
{
 get { return FixConnectionString(_connectionString); }
}
 

In this case FixConnectionString read the user info from some environment variable and inject it in the connection string.

Finally configure NH to use the ConnectionProvider:

 

   <property name="connection.provider">
    MyAssembly.DynamicConnectionProvider, MyAssembly
   </property>

转载于:https://www.cnblogs.com/CodingArt/p/5986052.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值