NHibernate Forge
The official new home for the NHibernate community

Dynamically change user info in connection string

Page Details

First published by:
oorduz
on 11-28-2008
Last revision by:
Fabio Maulo
on 11-29-2008
2 people found this article useful.
Article
Comments (1)
History (4)
100% of people found this useful

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>

Some useful articles here and here

Recent Comments

By: sarasramvel Posted on 05-15-2009 5:43

Its a useful way to customize the connection provider.... but in my case i need to establish the connection with the given username and password into oracle. The users schema won't have any objects... but internally i need to switch to a specific schema in oracle to access the objects..... username and password is used for authentication purpose only... and internally using oracle roles this connected user will have access to the specific schema..... so everytime i need to establish the connection and need to run a alter session script to switch the working schema..... is there any other better way to do the same... pls. advise.....

View All
Powered by Community Server (Commercial Edition), by Telligent Systems