本文介绍了使用TimeStamp将COM端口数据保存到SQL Server的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是在COM端口显示的数据。我将传入的数据保存到String,然后显示该字符串中的子字符串。
我需要将带有TimeStamp的子串保存到SQL Server数据库。我需要做些什么呢?
I am display data which is coming at COM Port. I am saving that incoming data to a String and then displaying sub string from that string.
I need to save substrings with TimeStamp to a SQL Server Database. What i need to do for it ?
private void DisplayData(MessageType type, string msg)
{
richTextBox1.Invoke(new EventHandler(delegate
{
string substring = string.Empty;
if (msg.Length > 54)
substring = msg.Substring(54, 3);
richTextBox1.AppendText(substring) ;
}));
}
#endregion
推荐答案
if (msg.Length > 57)
substring = msg.Substring(54, 3);
肯定会有工作
这篇关于使用TimeStamp将COM端口数据保存到SQL Server的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!