1090mhz 接收器和 MySql 数据库
我有一个 1090MHz 的接收器。它收到的东西现在并不重要。但您可以在此处查看。它通过 USB 端口输出十六进制数据字符串。 到目前为止,一切都很好。我想要做的是创建 ac# 程序,该程序将从端口检索数据,进行一些我可以自己处理的解码,然后将其存储在我的电脑上运行的 Mysql 数据库中。我有 C# 的基础知识。 所以我的问题如下:
- 如何使用 c# 从虚拟串行端口检索数据
- 如何使用 c# 将变量的内容存储到 Mysql 数据库
如果可能,请提供任何带有示例的链接或分步教程或其他内容。
I have a 1090mhz receiver. What it receives its not very important right now. But you can have a look at it here . It outputs strings of hex data over a USB port.
So far so good. What i want to do is create a c# program that will retrieve the data from the port, do a little decoding which i can handle my self and then store it in a Mysql database which is running on my pc. I have basic knowledge of c#.
So my questions are the following :
- How can I retrieve the data from the virtual serial port using c#
- How can I store the contents of variables in to a Mysql database using c#
If possible provide any link with examples or step by step tutorials or something.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要从串行端口读取数据,请查看 MSDN 上
SerialPort
类的文档:http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx
对于写入 MySql,我谷歌搜索“MySql C#”。至少有几页可以帮助您自我引导。
或者考虑使用 DB ORM,例如 NHibernate 与 MySql。
For reading from the serial port, check out the documentation on MSDN for the
SerialPort
class:http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx
For writing to MySql, I'd google for "MySql C#". There are at least a few pages that will help you bootstrap yourself.
Or look into using a DB ORM like NHibernate with MySql.