Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / SQL

Abstract Data Access Layer Design

Rate me:
Please Sign up or sign in to vote.
4.85/5 (16 votes)
5 Sep 2009CPOL4 min read 72.9K   1.2K   68  
The present document tries to describe the architecture of a specific layer of access to data for relational databases. This document tries to present/display a form to automate tasks of access to data.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XPeriment.Architect", "XPeriment.Architect\XPeriment.Architect.csproj", "{E561CAEF-A31A-4E73-AE43-978C88A339EF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XPeriment.Persistence", "XPeriment.Persistence\XPeriment.Persistence.csproj", "{F7A9CCE0-11E0-4A01-A289-4B64ACC61DEB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{48C63285-3E6B-4A2E-88B3-51EAF3306831}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{E561CAEF-A31A-4E73-AE43-978C88A339EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{E561CAEF-A31A-4E73-AE43-978C88A339EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{E561CAEF-A31A-4E73-AE43-978C88A339EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{E561CAEF-A31A-4E73-AE43-978C88A339EF}.Release|Any CPU.Build.0 = Release|Any CPU
		{F7A9CCE0-11E0-4A01-A289-4B64ACC61DEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{F7A9CCE0-11E0-4A01-A289-4B64ACC61DEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{F7A9CCE0-11E0-4A01-A289-4B64ACC61DEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{F7A9CCE0-11E0-4A01-A289-4B64ACC61DEB}.Release|Any CPU.Build.0 = Release|Any CPU
		{48C63285-3E6B-4A2E-88B3-51EAF3306831}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{48C63285-3E6B-4A2E-88B3-51EAF3306831}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{48C63285-3E6B-4A2E-88B3-51EAF3306831}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{48C63285-3E6B-4A2E-88B3-51EAF3306831}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer
Colombia Colombia
http://www.construirsoftware.blogspot.com/

Comments and Discussions