vote up 1 vote down star
1

Hi guys,

I have an ancient mess I'm trying to shovel into tiers using subsonic. Trouble is, I have this scenario:

When Hal logs in, his login uses database X for lookup data, database Y for his accounts and database Z for his contacts.

When Barry logs in, his login uses database X for lookupdata, database Q for his accounts and database R for his contacts.

X,Y,Z,Q and R are all on the same server. Y has an indentical schema to Q, and and Z has an identical schema to R. Don't get me started on how stupid a setup this is :)

I have to make my .NET Winforms App (using subsonic) point to the correct databases.

As far as I can tell, I'll have to get my hands dirty changing the SubSonic source (and maintain those changes with every subsonic release), so it can accept parameters rather than use app.config. Can anyone see an alternative to this?

flag

5 Answers

vote up 2 vote down

I've have never considered 'SharedDbConnectionScope' easy or suitable for my applications

Yet that's is the answer isn't it? It's why we put it in there - and yes I've heard your requests for connection changing on the fly and I've built it in, as I keep telling you in every thread that we have.

Changing the connections on the fly is a request we've had a for a long, long time and we added it in there a long while back - and as far as I know it works like a charm.

For SubSonic 3 I'm plugging in about 10 different ways that you can change your DBs connection whenever you want, to whatever platform you want with whatever object set you want.

link|flag
vote up 1 vote down

You shouldn't need to modify the source, you should just be able to use multiple providers for talking to the different databases and switch between them at runtime. Have a look at the following question to see how to do that:

http://stackoverflow.com/questions/828736/seperate-read-write-connection-for-subsonic/828825#828825

link|flag
vote up 1 vote down
  1. Subsonic can create a dal for multiple databases. Just add a provider refering to another connectionstring to your app.config. Modify the namespace for each provider.

Now you should be able to access: My.Namespace.R... My.Namespace.X...

  1. You can easily change connection on the fly:

    using (SharedDbConnectionScope scope = new SharedDbConnectionScope("new connectionstring "))
    {
    }
    

If you don't need more than one connection at a time, this is possible, too. We use this to logoff and logon to another server (Another side effect is, that you don't need to have a app/web.config.

Found this example here: http://www.digvijay.eu/post/2008/10/30/SubSonic-Trick-Specify-connection-string-at-runtime!.aspx

Everytime you call InitSubsonic the connection is changed.

public class MySubsonicProvider
{

    private static bool _bIsInitialized = false;

    public static void InitSubsonic(string server, string schema, string user, string password)
    {

        DataService.Providers = new DataProviderCollection();

        // here you can get settings from anywhere and make up a connection string :)
        MyDataProvider provider = new MyDataProvider("Server={0};Database={1};Uid={2};Password={3}", server, schema, user, password);
        DataService.Providers.Add(provider);
        DataService.Provider = provider;

        _bIsInitialized = true;

        // Clear cached values
        ClearSubSonicCache();

    }

    public class MyDataProvider : MySqlInnoDBDataProvider
    {

        private string _server;
        private string _schema;
        private string _user;
        private string _password;

        public string Server { get { return _server; } }
        public string Schema { get { return _schema; } }
        public string User { get { return _user; } }
        public string Password { get { return _password; } }

        public MyDataProvider(string connectionString, string server, string schema, string user, string password)
        {
            DefaultConnectionString = String.Format(connectionString, server, schema, user, password);

            _server = server;
            _schema = schema;
            _user = user;
            _password = password;

        }

        public override string Name
        {
            get { return "MyDataProvider"; }
        }

    }
}
link|flag
vote up 1 vote down check

Thanks guys. I already had the multiple providers worked out, but didn't know how to set them at runtime (and I already searched this forum. Must have used the wrong keywords).

SharedDBConnectionScope seems perfect for on the fly, but didn't seem designed to set the provider for the whole user session.

So I did more searching based on your answers above, and came up with the following solution:

1) Add three providers for lookups, accounts and contacts, and generate the DAL.

2) add this to the DAL:

public static void SetProvider(string strProvider,string strConnectionString)
{
    DataService.GetInstance(strProvider).DefaultConnectionString = 
                                                     strConnectionString;
}

3) call it on login, once my app has worked out which databases the user uses, eg

MyDAL.SSProvider.SetProvider("Lookups", 
            "server=10.123.456.78;port=3306;uid=whatever;pwd=blah;database=X")

MyDAL.SSProvider.SetProvider("Accounts", 
      "server=10.123.456.78;port=3306;uid=whatever;pwd=blah;database=Y")

MyDAL.SSProvider.SetProvider("Contacts",    
               "server=10.123.456.78;port=3306;uid=whatever;pwd=blah;database=Z")

And off it goes.

link|flag
I just wanted to follow up this post with my own experiences, TheVillageIdiot's is the one that worked for me!!! – jonezy Sep 22 at 19:22
i'm writing a blog post and will to it here with a more detailed explanation of how I implemented TheVillageIdiots solution – jonezy Sep 24 at 4:21
vote up 0 vote down

Its not an ancient scenario. You may have one windows form application, 3 different schemas (in the sql-99 meaning), and 3 or 4 different connections defined at runtime, some using the same schema. The developer may only have sample local development copies of the databases, and the actual connections, for security or other business reasons, may be known only at runtime. Trying to get subsonic 2.x to do that is very difficult. I have more or less solved these problems with a customized version of subsonic. Even today, I have discussed with with the developers on subsonic 3 trying to make the case for the importance of this flexibility. I've have never considered 'SharedDbConnectionScope' easy or suitable for my applications. This was covered a lot in the old subsonic forums but those are gone now.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.