vote up 1 vote down star
1

I have an web application where I have a requirement to encrypt and store the connection string in the web.config.

What is the best way to retrieve this and use this connection string with IBATIS.NET instead of storing the connection string in the SqlMap.config?

flag

33% accept rate

2 Answers

vote up 3 vote down check

The last three messages of this discussion thread discuss what you want.

Essentially, you're overwriting the connection string iBATIS loads from the config file before your call to Configure().

For example, in your SqlMap.config:


   <database>
      <provider name="sqlServer2005" />
      <dataSource name="TheDB" connectionString="${connectionString}"/>
   </database>

And in your code where you configure the builder, something like:


DomSqlMapBuilder builder;
string connection;
NameValueCollection properties;

connection = AccessTheEncryptedStringHere();

// Put the string in collection to pass to the iBATIS configurator
properties = new NameValueCollection();
properties.Add("connectionString", connection);

// Build the iBATIS configurator
builder = new DomSqlMapBuilder();
builder.Properties = properties;
builder.Configure("SqlMap.config");

link|flag
thanks for that! I always find information for iBATIS.NET difficult even using google – Jon Cahill Jan 15 at 4:32
I've been using it for for 2 years now and just stumbled across a feature that I hadn't been aware of. The mailing lists generally are one of the best documentation resources. And next to that, the source itself. Good framework, but yeah, the docs are sparse. Good luck! – Nicholas Piasecki Jan 16 at 3:27
iBATIS.NET is almost a secret on the web ;-) Thanks for the info. – John Paul Jones Jan 28 at 9:39
@Nicholas: Me too. Now that I've found this question on SO, I'm one step closer to completing my personal collection of iBATIS.NET tips and tricks. Maybe someday I'll share them :) – Cory Larson Sep 23 at 15:49
vote up 0 vote down

Are you looking out for this? retrieving the encrypted connectionstring from web.config--

You can try the foll. code-- name of the connection string is omni_dbConnectionString

string connectionString = ConfigurationManager.ConnectionStrings["myProtectedConfigProvider"].ProviderName;

or

string connectionString = ConfigurationManager.ConnectionStrings["omni_dbConnectionString"].ConnectionString;

link|flag

Your Answer

Get an OpenID
or

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