从 SQL Server 到标签的文本
如何从 SQL Server 中选择一列并将其放入标签中,然后标签始终显示最新的列(我有 Datetime
)
How do I select one column from my SQL Server and put it into a label, and then the label always shows the newest (I have Datetime
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一篇值得您阅读并遵循的好文章。它有 4 个部分。您将在那里找到答案并学习基础知识。
http://weblogs .asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx
This is a good article for you to read through and follow. There's 4 parts to it. You'll find your answers in there plus learn the basics.
http://weblogs.asp.net/scottgu/archive/2007/05/19/using-linq-to-sql-part-1.aspx
我想说你应该首先学习所有内容的基础知识,但我会在这里给你一个指导。
假设你的表格看起来像这样
,所以你有一个日期时间字段和一个标签字段。您现在需要一个存储过程来从 SQL Server 中获取这些数据。
现在您的 SQL 已完成。现在是时候编码了。我假设您使用的是 C# (.NET)。
这样就可以了。祝你好运!
I'd say you should go learn the basics on everything first, but I'll give you a pointer here..
Let's say your table looks like this
So you have one datetime field and one field for your label. You now need a stored procedure to get this data out of your sql server so.
Now your SQL is done. So now time for your coding. I'll assume you are using c# (.NET).
and that should do it. Good luck!