Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 143461
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:05:56+00:00 2026-05-11T08:05:56+00:00

A stored procedure returns data about a user record including a nullable datetime column

  • 0

A stored procedure returns data about a user record including a nullable datetime column for their last login date. Which one is the better choice in dealing with the possibility for NULL values when trying to assign a .Net date variable?

    Try         _LastLogin = CDate(DT.Rows(0)('LastLogin'))     Catch ex As InvalidCastException         _LastLogin = Nothing     End Try 

or

    If DT.Rows(0)('LastLogin') Is DBNull.Value Then         _LastLogin = Nothing     Else         _LastLogin = CDate(DT.Rows(0)('LastLogin'))     End If 

Edit: I also forgot about the possibility of using a TryParse

    If Not Date.TryParse(DT.Rows(0)('LastLogin').ToString, _LastLogin) Then         _LastLogin = Nothing     End If 

Which is the preferred method of handling possible NULL values from the database? Is there a better way than the three listed?

Edit #2: I have noticed that the TryParse method does not play nice when trying to assign to a Nullable type.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:05:57+00:00Added an answer on May 11, 2026 at 8:05 am

    The second code snippet is better. Exceptions are for exceptional cases, not cases you expect to happen. Plus, the intent is much better. It’s clear that you are expecting DBNull to be a possible value and you want to handle it accordingly.

    Also, you may have unintended consequences if the value is not null but not parseable (although this is likely to never happen).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 105k
  • Answers 105k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer One thing that will help you figure that out is… May 11, 2026 at 8:41 pm
  • Editorial Team
    Editorial Team added an answer It appears you are using a custom Try function with… May 11, 2026 at 8:41 pm
  • Editorial Team
    Editorial Team added an answer A char is a number between -128 and 127. KEY_F(9)… May 11, 2026 at 8:41 pm

Related Questions

Is the following stored procedure code robust for multi-user application. It is working fine.
I want to create a stored procedure that takes the name of a table
I have this databases: table<User>(UserID,Name,Surname,Username,Password,Email) , table<Role>(RoleID,RoleName,Description) , and table<UsersInRole>(UserID,RoleID) . I create a
I want to analyze an SQL Server stored procedure from .NET code to retrieve

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.