嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#通用数据库访问类 常用6种数据库VS2008
-- 数据访问类的类名(名称空间.类名) 继承IDBOperator接口的类 --> <add key="typeName" value="Common.DataAccess.SQLDBOperator"/> <!-- SQLServer方式 --> <!--...
.
├── C#通用数据库访问类 常用6种数据库VS2008.rar
└── CommonTest
├── Common
│ ├── Common.csproj
│ ├── DBOperator.cs
│ ├── IDBOperator.cs
│ ├── OleDBDBOperator.cs
│ ├── OracleDbOperator.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ReaderMe.txt
│ ├── SQLDBOperator.cs
│ ├── SqlString.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Common.dll
│ │ │ └── Common.pdb
│ │ └── Release
│ │ ├── Common.XML
│ │ ├── Common.dll
│ │ ├── Common.pdb
│ │ └── ReaderMe.txt
│ └── obj
│ ├── Common.csproj.FileList.txt
│ ├── Debug
│ │ ├── Common.dll
│ │ ├── Common.pdb
│ │ └── TempPE
│ └── Release
│ ├── Common.csproj.FileListAbsolute.txt
│ ├── Common.dll
│ ├── Common.pdb
│ ├── Refactor
│ │ └── Common.dll
│ └── TempPE
├── Common.sln
├── Common.suo
└── CommonTest
├── App.config
├── CommonTest.csproj
├── CommonTest.csproj.user
├── Form1.Designer.cs
├── Form1.cs
├── Form1.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── DataSources
│ │ └── Common.DataAccess.IDBOperator.datasource
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── bin
│ ├── Debug
│ └── Release
│ ├── Common.dll
│ ├── Common.pdb
│ ├── Common.xml
│ ├── CommonTest.exe
│ ├── CommonTest.exe.config
│ ├── CommonTest.pdb
│ ├── CommonTest.vshost.exe
│ ├── CommonTest.vshost.exe.config
│ ├── CommonTest.vshost.exe.manifest
│ ├── DB
│ └── Database1.accdb
└── obj
├── Debug
│ └── TempPE
└── Release
├── CommonTest.Form1.resources
├── CommonTest.Properties.Resources.resources
├── CommonTest.csproj.FileListAbsolute.txt
├── CommonTest.csproj.GenerateResource.Cache
├── CommonTest.exe
├── CommonTest.pdb
├── Refactor
├── ResolveAssemblyReference.cache
└── TempPE
25 directories, 55 files