vote up 0 vote down star

I found a lot of information about how to make a database factory or how to deal with connection pooling but i nowhere found a complete solution.

I have always used my own solutions, but they're not complete i think or could be improved.

Are there some good designed classes any of you use that i can find on the net?

Thanks ;-)

flag

I would argue that if they do what you need, and do it reliably, they are complete enough. – Matthew Scharley Aug 12 at 10:31

1 Answer

vote up 1 vote down

I think probably the best example of this would be the DatabaseFactory class that is found within Microsoft's own Enterprise Library.

It's available from the Codeplex site and comes with full source code. The downside is that the code is in C# rather than VB.NET. It does, however, offer a DatabaseFactory class (amongst others) that represent best practise approaches to these programming areas.

Bear in mind that the Enterprise Library will use System.Data namespace classes and so can take advantage of any "built-in" connection pooling available (for example when connecting to SQL Server and using the same connection string).

link|flag

Your Answer

Get an OpenID
or

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