问题描述
Hai,
我正在创建一个Windows窗体。我在Sql server数据库名称test中存储了到期日期,表名exp具有id(主键)和日期属性。我的程序是一个按钮点击然后usercontrole显示。如果日期过期时显示消息框应用程序已过期
如何从Sqlserver数据库获取日期到日期时间dt2。
数据库名称=测试
表名= exp
我尝试过:
Button1_clicked
日期时间dt1 = datetime.now;
日期时间dt2 =数据库中的expirydate
如果(dt1> dt2)
{
Messagebox.show(App expired);
}
Else
{
Usercontrole。 bringToFront();
}
Hai,
I am create a windows form. I stored expiry date in Sql server database name "test" and the table name "exp" have id(primary key) and date attributes. And my program is a button clicks then the usercontrole show. If date expired when show a message box "the app expired"
How can get the date from the the "Sqlserver database" to "Datetime dt2".
Database name = test
Table name= exp
What I have tried:
Button1_clicked
Datetime dt1= datetime.now;
Datetime dt2= expirydate from database
If(dt1>dt2)
{
Messagebox.show("App expired");
}
Else
{
Usercontrole.bringToFront();
}
这篇关于来自sqlserver数据库的日期。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!