data access that apply for and data source
-
Hi all, I am developing an asp.net application and i want to develop data access layer that is applicable for any data source type for example(sql server orcle). is there any one have an idea about implementing this data layer without using oldbe connection. it is important to say that i don't use any stored procedure ,I am dealing with database at run time using .net without any stored procedure or functions. I will be gratefull if anyone can help me with this issue Best regards, Hassan Amaar.
Hassan Amaar
-
Hi all, I am developing an asp.net application and i want to develop data access layer that is applicable for any data source type for example(sql server orcle). is there any one have an idea about implementing this data layer without using oldbe connection. it is important to say that i don't use any stored procedure ,I am dealing with database at run time using .net without any stored procedure or functions. I will be gratefull if anyone can help me with this issue Best regards, Hassan Amaar.
Hassan Amaar
If you are dealing with multiple sources, you need to consider using the Factory pattern. Fortunately for you, MS has spent a lot of time and money extracting the interfaces out into relevant factories. This article is a small starting point for you: http://davidhayden.com/blog/dave/archive/2006/04/04/2900.aspx[^]
Deja View - the feeling that you've seen this post before.
-
If you are dealing with multiple sources, you need to consider using the Factory pattern. Fortunately for you, MS has spent a lot of time and money extracting the interfaces out into relevant factories. This article is a small starting point for you: http://davidhayden.com/blog/dave/archive/2006/04/04/2900.aspx[^]
Deja View - the feeling that you've seen this post before.
Thanks alot I do appreciate your help
Hassan Amaar
-
Thanks alot I do appreciate your help
Hassan Amaar
Not a problem. I'm glad to help with questions like this.
Deja View - the feeling that you've seen this post before.