基本信息
源码名称:C# 从串口读取数据并保存到ACCESS数据库中
源码大小:0.16M
文件格式:.zip
开发语言:C#
更新时间:2023-06-03
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C# 从串口读取数据并保存到ACCESS数据库中
自己学习C#开发时候练习写的串口传输程序,并将接受文本框的文本按空格分开存档到数据库中供查询的想修改,其中DataReceived事件我没有定义太复杂,而是将数据转存到一个list中缓存,之后再供主线程处理,不知这种...
文件清单
├── example
│ └── ex1
│ ├── ex1
│ │ ├── AdpToAccess.cs
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── ex1.vshost.exe
│ │ │ │ └── ex1.vshost.exe.manifest
│ │ │ ├── Release
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── b1
│ │ │ │ └── Database11.accdb
│ │ │ ├── Database11.accdb
│ │ │ ├── ex1.exe
│ │ │ ├── ex1.exe.config
│ │ │ ├── ex1.pdb
│ │ │ ├── ex1.vshost.exe
│ │ │ ├── ex1.vshost.exe.config
│ │ │ └── ex1.vshost.exe.manifest
│ │ ├── ex1.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── FrmA.cs
│ │ ├── FrmA.Designer.cs
│ │ ├── FrmA.resx
│ │ ├── FrmDocForm.cs
│ │ ├── FrmDocForm.Designer.cs
│ │ ├── FrmDocForm.resx
│ │ ├── FrmSetting.cs
│ │ ├── FrmSetting.Designer.cs
│ │ ├── FrmSetting.resx
│ │ ├── MyATAccess.cs
│ │ ├── MyCommon.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ex1.csproj.FileListAbsolute.txt
│ │ │ ├── ex1.csproj.GenerateResource.Cache
│ │ │ ├── ex1.csprojResolveAssemblyReference.cache
│ │ │ ├── ex1.exe
│ │ │ ├── ex1.Form1.resources
│ │ │ ├── ex1.FrmA.resources
│ │ │ ├── ex1.FrmDocForm.resources
│ │ │ ├── ex1.FrmSetting.resources
│ │ │ ├── ex1.pdb
│ │ │ ├── ex1.Properties.Resources.resources
│ │ │ └── TempPE
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ex1.sln
│ └── ex1.v12.suo
└── 说明.txt
16 directories, 50 files
C# 从串口读取数据并保存到ACCESS数据库中
自己学习C#开发时候练习写的串口传输程序,并将接受文本框的文本按空格分开存档到数据库中供查询的想修改,其中DataReceived事件我没有定义太复杂,而是将数据转存到一个list中缓存,之后再供主线程处理,不知这种...
文件清单
├── example
│ └── ex1
│ ├── ex1
│ │ ├── AdpToAccess.cs
│ │ ├── app.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── ex1.vshost.exe
│ │ │ │ └── ex1.vshost.exe.manifest
│ │ │ ├── Release
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── b1
│ │ │ │ └── Database11.accdb
│ │ │ ├── Database11.accdb
│ │ │ ├── ex1.exe
│ │ │ ├── ex1.exe.config
│ │ │ ├── ex1.pdb
│ │ │ ├── ex1.vshost.exe
│ │ │ ├── ex1.vshost.exe.config
│ │ │ └── ex1.vshost.exe.manifest
│ │ ├── ex1.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── FrmA.cs
│ │ ├── FrmA.Designer.cs
│ │ ├── FrmA.resx
│ │ ├── FrmDocForm.cs
│ │ ├── FrmDocForm.Designer.cs
│ │ ├── FrmDocForm.resx
│ │ ├── FrmSetting.cs
│ │ ├── FrmSetting.Designer.cs
│ │ ├── FrmSetting.resx
│ │ ├── MyATAccess.cs
│ │ ├── MyCommon.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ └── TempPE
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ex1.csproj.FileListAbsolute.txt
│ │ │ ├── ex1.csproj.GenerateResource.Cache
│ │ │ ├── ex1.csprojResolveAssemblyReference.cache
│ │ │ ├── ex1.exe
│ │ │ ├── ex1.Form1.resources
│ │ │ ├── ex1.FrmA.resources
│ │ │ ├── ex1.FrmDocForm.resources
│ │ │ ├── ex1.FrmSetting.resources
│ │ │ ├── ex1.pdb
│ │ │ ├── ex1.Properties.Resources.resources
│ │ │ └── TempPE
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ex1.sln
│ └── ex1.v12.suo
└── 说明.txt
16 directories, 50 files