Click here to Skip to main content
15,884,388 members
Articles / Database Development / SQL Server

Overview of XQuiSoft Data Using the Provider Pattern (Open Source)

Rate me:
Please Sign up or sign in to vote.
3.59/5 (12 votes)
16 Jun 2009BSD8 min read 40.7K   28  
A data abstraction layer for .NET applications. Write your application code to be database neutral. Swap out the type of database your application uses without updating or even recompiling your business components.
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.21022</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{1E38B85E-234C-4615-B0FA-F5EBA2B44610}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>XQuiSoft.Data</RootNamespace>
    <AssemblyName>XQuiSoft.Data</AssemblyName>
    <SignAssembly>true</SignAssembly>
    <AssemblyOriginatorKeyFile>xquisoft.snk</AssemblyOriginatorKeyFile>
    <FileUpgradeFlags>
    </FileUpgradeFlags>
    <OldToolsVersion>2.0</OldToolsVersion>
    <UpgradeBackupLocation>
    </UpgradeBackupLocation>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>TRACE;DEBUG;net2_0</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>bin\Debug\XQuiSoft.Data.XML</DocumentationFile>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE;net2_0</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>bin\Release\XQuiSoft.Data.XML</DocumentationFile>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.configuration" />
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Column.cs" />
    <Compile Include="DataManager.cs" />
    <Compile Include="DataManagerConfiguration.cs" />
    <Compile Include="DataProvider.cs" />
    <Compile Include="DataProviderCollection.cs" />
    <Compile Include="DbContext.cs" />
    <Compile Include="IDataFactory.cs" />
    <Compile Include="Parameter.cs" />
    <Compile Include="ParameterCollection.cs" />
    <Compile Include="Procedure.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="SqlClient\SqlDataProvider.cs" />
    <Compile Include="SqlClient\SqlDbContext.cs" />
  </ItemGroup>
  <ItemGroup>
    <None Include="BSDLicense.rtf">
      <SubType>Designer</SubType>
    </None>
    <None Include="PostBuildDebug_net2_0.bat" />
    <None Include="PostBuildRelease_net2_0.bat" />
    <None Include="XQuiSoft.Data Design and Usage.doc" />
    <None Include="xquisoft.snk" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="readme.txt" />
    <Content Include="SampleConfig.xml" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\XQuiSoft\XQuiSoft_net2_0.csproj">
      <Project>{FC63F3E6-27C9-472A-A0D5-DBCDF2840309}</Project>
      <Name>XQuiSoft_net2_0</Name>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
  <PropertyGroup>
    <PostBuildEvent>call $(ProjectDir)Postbuild$(ConfigurationName)_net2_0.bat</PostBuildEvent>
  </PropertyGroup>
</Project>

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 BSD License


Written By
Web Developer Nexul Software LLC
United States United States
Mike has worked in the .Net platform since the beta 2 release of version 1.0. Before that he worked on VB6 windows forms applications automating other applications such as AutoCAD and "Intent".

Mike has released a number of open source applications in javascript and C#.Net. Most of them can be found on github.
github/michael-lang

You can find older .Net open source projects on sourceforge at:
http://sourceforge.net/users/versat1474/

Mike is currently blogging at candordeveloper.com

Comments and Discussions