Click here to Skip to main content
15,881,516 members
Articles / Programming Languages / C#

Building an embedded database engine in C#

Rate me:
Please Sign up or sign in to vote.
4.91/5 (110 votes)
10 Jun 2009CPOL8 min read 316.2K   10K   347  
DbfDotNet is a very fast and compact fully managed standalone database/entity framework, for the .Net Framework.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual C# Express 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbfDotNet", "DbfDotNet\DbfDotNet.csproj", "{8293438E-A818-40A1-9B3F-3DCE958D3D05}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbfDotNet.Linq", "DbfDotNet.Linq\DbfDotNet.Linq.csproj", "{C23946C0-FFE4-42CA-BA4D-2B51B75B0910}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DemoApplication1", "DemoApplication1\DemoApplication1.csproj", "{C5F9712A-839E-4D0D-BB6B-8220373E38C0}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Debug|x86.ActiveCfg = Debug|x86
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Debug|x86.Build.0 = Debug|x86
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Release|Any CPU.Build.0 = Release|Any CPU
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Release|x86.ActiveCfg = Release|x86
		{8293438E-A818-40A1-9B3F-3DCE958D3D05}.Release|x86.Build.0 = Release|x86
		{C23946C0-FFE4-42CA-BA4D-2B51B75B0910}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C23946C0-FFE4-42CA-BA4D-2B51B75B0910}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C23946C0-FFE4-42CA-BA4D-2B51B75B0910}.Debug|x86.ActiveCfg = Debug|Any CPU
		{C23946C0-FFE4-42CA-BA4D-2B51B75B0910}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C23946C0-FFE4-42CA-BA4D-2B51B75B0910}.Release|Any CPU.Build.0 = Release|Any CPU
		{C23946C0-FFE4-42CA-BA4D-2B51B75B0910}.Release|x86.ActiveCfg = Release|Any CPU
		{C5F9712A-839E-4D0D-BB6B-8220373E38C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C5F9712A-839E-4D0D-BB6B-8220373E38C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C5F9712A-839E-4D0D-BB6B-8220373E38C0}.Debug|x86.ActiveCfg = Debug|Any CPU
		{C5F9712A-839E-4D0D-BB6B-8220373E38C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C5F9712A-839E-4D0D-BB6B-8220373E38C0}.Release|Any CPU.Build.0 = Release|Any CPU
		{C5F9712A-839E-4D0D-BB6B-8220373E38C0}.Release|x86.ActiveCfg = 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
Software Developer (Senior)
France France
I am a French programmer.
These days I spend most of my time with the .NET framework, JavaScript and html.

Comments and Discussions