Connection object question...

mandelbrot

Well-known member
Joined
Jul 1, 2005
Messages
190
Location
UK North East
Just a quick one here - if I have more than one DatAdapter, can I use the same connection to read data, or do I need to use multiple connections?


Thanks,
Paul.
 
You can use one connection for multiple DataAdapters just fine. The only time this could be a problem is if you are using multiple threads / async methods to run multiple adapters on the same connection at the same time.
 
Back
Top