基本信息
源码名称:使用DevExpress的Winform(C#)连接MySQL的Demo
源码大小:4.75M
文件格式:.rar
开发语言:C#
更新时间:2023-05-28
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
使用DevExpress的Winform(C#)连接MySQL的Demo
需要建表: create table userinfo ( id int(5) auto_increment not null primary key, --自增主键 ...使用了两种方式MySQLDriverCS和OLEDB,分别对应两个画面和两个引用的DLL: MySQLDriverCS.dll和MySQLPV.dll
文件清单
└── WindowsFormsApplication1
├── bin
│ ├── Debug
│ │ ├── DevExpress.Data.v9.2.dll
│ │ ├── DevExpress.Utils.v9.2.dll
│ │ ├── DevExpress.XtraBars.v9.2.dll
│ │ ├── DevExpress.XtraEditors.v9.2.dll
│ │ ├── DevExpress.XtraGrid.v9.2.dll
│ │ ├── DevExpress.XtraTreeList.v9.2.dll
│ │ ├── en
│ │ ├── Interop.MySQLPV.dll
│ │ ├── MyForm.exe
│ │ ├── MyForm.pdb
│ │ ├── MyForm.vshost.exe
│ │ ├── MySQLDriverCS.dll
│ │ └── zh-CHT
│ └── Release
│ ├── MyForm.exe
│ ├── MyForm.pdb
│ ├── MyForm.vshost.exe
│ ├── MyForm.vshost.exe.manifest
│ └── MySQLDriverCS.dll
├── DataSetUser.Designer.cs
├── DataSetUser.xsc
├── DataSetUser.xsd
├── DataSetUser.xss
├── FormMain.cs
├── FormMain.Designer.cs
├── FormMain.resx
├── FormMySQL.cs
├── FormMySQL.Designer.cs
├── FormMySQL.resx
├── FormOLEDB.cs
├── FormOLEDB.Designer.cs
├── FormOLEDB.resx
├── obj
│ ├── Debug
│ │ ├── Interop.MySQLPV.dll
│ │ ├── MyForm.exe
│ │ ├── MyForm.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── DataSetUser.Designer.cs.dll
│ │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication1.csproj.GenerateResource.Cache
│ │ ├── WindowsFormsApplication1.Form2.resources
│ │ ├── WindowsFormsApplication1.Form3.resources
│ │ ├── WindowsFormsApplication1.FormMySQL.resources
│ │ ├── WindowsFormsApplication1.FormOLEDB.resources
│ │ ├── WindowsFormsApplication1.Properties.Resources.resources
│ │ ├── WindowsForms.csproj.FileListAbsolute.txt
│ │ ├── WindowsForms.csproj.GenerateResource.Cache
│ │ └── WindowsForms.csproj.ResolveComReference.cache
│ └── Release
│ ├── MyForm.exe
│ ├── MyForm.pdb
│ ├── TempPE
│ │ └── DataSetUser.Designer.cs.dll
│ ├── WindowsFormsApplication1.FormMySQL.resources
│ ├── WindowsFormsApplication1.Properties.Resources.resources
│ ├── WindowsForms.csproj.FileListAbsolute.txt
│ └── WindowsForms.csproj.GenerateResource.Cache
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── WindowsForms.csproj
└── WindowsForms.csproj.vspscc
13 directories, 59 files
使用DevExpress的Winform(C#)连接MySQL的Demo
需要建表: create table userinfo ( id int(5) auto_increment not null primary key, --自增主键 ...使用了两种方式MySQLDriverCS和OLEDB,分别对应两个画面和两个引用的DLL: MySQLDriverCS.dll和MySQLPV.dll
文件清单
└── WindowsFormsApplication1
├── bin
│ ├── Debug
│ │ ├── DevExpress.Data.v9.2.dll
│ │ ├── DevExpress.Utils.v9.2.dll
│ │ ├── DevExpress.XtraBars.v9.2.dll
│ │ ├── DevExpress.XtraEditors.v9.2.dll
│ │ ├── DevExpress.XtraGrid.v9.2.dll
│ │ ├── DevExpress.XtraTreeList.v9.2.dll
│ │ ├── en
│ │ ├── Interop.MySQLPV.dll
│ │ ├── MyForm.exe
│ │ ├── MyForm.pdb
│ │ ├── MyForm.vshost.exe
│ │ ├── MySQLDriverCS.dll
│ │ └── zh-CHT
│ └── Release
│ ├── MyForm.exe
│ ├── MyForm.pdb
│ ├── MyForm.vshost.exe
│ ├── MyForm.vshost.exe.manifest
│ └── MySQLDriverCS.dll
├── DataSetUser.Designer.cs
├── DataSetUser.xsc
├── DataSetUser.xsd
├── DataSetUser.xss
├── FormMain.cs
├── FormMain.Designer.cs
├── FormMain.resx
├── FormMySQL.cs
├── FormMySQL.Designer.cs
├── FormMySQL.resx
├── FormOLEDB.cs
├── FormOLEDB.Designer.cs
├── FormOLEDB.resx
├── obj
│ ├── Debug
│ │ ├── Interop.MySQLPV.dll
│ │ ├── MyForm.exe
│ │ ├── MyForm.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── DataSetUser.Designer.cs.dll
│ │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication1.csproj.GenerateResource.Cache
│ │ ├── WindowsFormsApplication1.Form2.resources
│ │ ├── WindowsFormsApplication1.Form3.resources
│ │ ├── WindowsFormsApplication1.FormMySQL.resources
│ │ ├── WindowsFormsApplication1.FormOLEDB.resources
│ │ ├── WindowsFormsApplication1.Properties.Resources.resources
│ │ ├── WindowsForms.csproj.FileListAbsolute.txt
│ │ ├── WindowsForms.csproj.GenerateResource.Cache
│ │ └── WindowsForms.csproj.ResolveComReference.cache
│ └── Release
│ ├── MyForm.exe
│ ├── MyForm.pdb
│ ├── TempPE
│ │ └── DataSetUser.Designer.cs.dll
│ ├── WindowsFormsApplication1.FormMySQL.resources
│ ├── WindowsFormsApplication1.Properties.Resources.resources
│ ├── WindowsForms.csproj.FileListAbsolute.txt
│ └── WindowsForms.csproj.GenerateResource.Cache
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── WindowsForms.csproj
└── WindowsForms.csproj.vspscc
13 directories, 59 files