views:

277

answers:

1

Our current DB Connection provider model relies on database connectivity to use DbConnection (System.Data) based objects.

We can connect to DB2 (*Nix * Windows) via OdbcConnection, but we would like to allow the use of native DB2 Drivers.

Is there any way to do so (either .Net framework, OpenSource or (last choice) vendor) without breaking away from our current DAL model?

+4  A: 

I think your questions are answered here: http://www.codeproject.com/KB/database/DotnetDb2.aspx

There are quite a few options there.

Mischa Kroon