Asp.net processes fields with datetime null

Source: Internet
Author: User

. Net 1.1 does not support SQL server when the datetime field is null
The SQL server datetime field supported by. net 2.0 is null.


If datetime is not supported,
The SQL server database tutorial generally selects a specific date to indicate a null value. By default, it is
In the asp tutorial, how can I process fields with datetime null?
// In this example, user is an object class object.

If (user. lastlogindate. hasvalue)
{
Lblinfo. text = user. lastlogindate. value. tostring ("yyyy-mm-dd ");
}
Else
{
Lblinfo. text = "never logged on! ";
}

If the datetime type field in SQL server is null, it cannot be directly converted to a datetime type variable after it is obtained in c. Of course, it cannot be determined whether it is equal to null. It should be determined whether it is equal to dbnull. value. When the object class is used, you can set the specified attribute to be allowed to be null, and similar to public datetime? Lastlogindate method definition. In this way, the lastlogindate attribute is assigned only when the date field in the result set is not equal to dbnull. value. When using datetime? Type variable, use its hasvalue attribute for judgment and processing

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.