基本信息
源码名称:C#打开ACCESS基本操作
源码大小:0.21M
文件格式:.rar
开发语言:C#
更新时间:2023-05-06
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#打开ACCESS基本操作
本实例为利用C#打开ACCESS的一个简单实例,涉及ACCESS数据库的增、删、改、查……
文件清单
└── 用Access数据库编程
└── 通讯录管理系统
├── 通讯录管理系统
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── 信息库.mdb
│ │ ├── 通讯录管理系统.exe
│ │ ├── 通讯录管理系统.exe.config
│ │ ├── 通讯录管理系统.pdb
│ │ ├── 通讯录管理系统.vshost.exe
│ │ └── 通讯录管理系统.vshost.exe.config
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Form2.cs
│ ├── Form2.Designer.cs
│ ├── Form2.resx
│ ├── Form3.cs
│ ├── Form3.Designer.cs
│ ├── Form3.resx
│ ├── Form4.cs
│ ├── Form4.Designer.cs
│ ├── Form4.resx
│ ├── Form5.cs
│ ├── Form5.Designer.cs
│ ├── Form5.resx
│ ├── Form6.cs
│ ├── Form6.Designer.cs
│ ├── Form6.resx
│ ├── Form7.cs
│ ├── Form7.Designer.cs
│ ├── Form7.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ │ └── 信息库DataSet.Designer.cs.dll
│ │ │ ├── 通讯录管理系统.csproj.GenerateResource.Cache
│ │ │ ├── 通讯录管理系统.exe
│ │ │ ├── 通讯录管理系统.Form1.resources
│ │ │ ├── 通讯录管理系统.Form2.resources
│ │ │ ├── 通讯录管理系统.Form3.resources
│ │ │ ├── 通讯录管理系统.Form4.resources
│ │ │ ├── 通讯录管理系统.Form5.resources
│ │ │ ├── 通讯录管理系统.Form6.resources
│ │ │ ├── 通讯录管理系统.Form7.resources
│ │ │ ├── 通讯录管理系统.pdb
│ │ │ └── 通讯录管理系统.Properties.Resources.resources
│ │ ├── 通讯录管理系统.csproj.FileListAbsolute.txt
│ │ └── 通讯录管理系统.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 信息库DataSet.Designer.cs
│ ├── 信息库DataSet.xsc
│ ├── 信息库DataSet.xsd
│ ├── 信息库DataSet.xss
│ ├── 信息库.mdb
│ └── 通讯录管理系统.csproj
├── 通讯录管理系统.sln
└── 通讯录管理系统.suo
10 directories, 56 files
C#打开ACCESS基本操作
本实例为利用C#打开ACCESS的一个简单实例,涉及ACCESS数据库的增、删、改、查……
文件清单
└── 用Access数据库编程
└── 通讯录管理系统
├── 通讯录管理系统
│ ├── app.config
│ ├── bin
│ │ └── Debug
│ │ ├── 信息库.mdb
│ │ ├── 通讯录管理系统.exe
│ │ ├── 通讯录管理系统.exe.config
│ │ ├── 通讯录管理系统.pdb
│ │ ├── 通讯录管理系统.vshost.exe
│ │ └── 通讯录管理系统.vshost.exe.config
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Form2.cs
│ ├── Form2.Designer.cs
│ ├── Form2.resx
│ ├── Form3.cs
│ ├── Form3.Designer.cs
│ ├── Form3.resx
│ ├── Form4.cs
│ ├── Form4.Designer.cs
│ ├── Form4.resx
│ ├── Form5.cs
│ ├── Form5.Designer.cs
│ ├── Form5.resx
│ ├── Form6.cs
│ ├── Form6.Designer.cs
│ ├── Form6.resx
│ ├── Form7.cs
│ ├── Form7.Designer.cs
│ ├── Form7.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ │ └── 信息库DataSet.Designer.cs.dll
│ │ │ ├── 通讯录管理系统.csproj.GenerateResource.Cache
│ │ │ ├── 通讯录管理系统.exe
│ │ │ ├── 通讯录管理系统.Form1.resources
│ │ │ ├── 通讯录管理系统.Form2.resources
│ │ │ ├── 通讯录管理系统.Form3.resources
│ │ │ ├── 通讯录管理系统.Form4.resources
│ │ │ ├── 通讯录管理系统.Form5.resources
│ │ │ ├── 通讯录管理系统.Form6.resources
│ │ │ ├── 通讯录管理系统.Form7.resources
│ │ │ ├── 通讯录管理系统.pdb
│ │ │ └── 通讯录管理系统.Properties.Resources.resources
│ │ ├── 通讯录管理系统.csproj.FileListAbsolute.txt
│ │ └── 通讯录管理系统.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 信息库DataSet.Designer.cs
│ ├── 信息库DataSet.xsc
│ ├── 信息库DataSet.xsd
│ ├── 信息库DataSet.xss
│ ├── 信息库.mdb
│ └── 通讯录管理系统.csproj
├── 通讯录管理系统.sln
└── 通讯录管理系统.suo
10 directories, 56 files