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

  • SEARCH
  • Home
  • 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 121471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:58:34+00:00 2026-05-11T03:58:34+00:00

I’ve got the following bit of code (that another developer wrote) that I need

  • 0

I’ve got the following bit of code (that another developer wrote) that I need to modify because the ExecuteProc procedure fails. (The reason why it fails isn’t in the scope of this question. It’s a long story) but in scope is that I’m not sure why a NullReferenceException would occur. It’s in VB.NET (I’m not a VB.NET guy myself, so I’m not sure if this is something that is unique to VB.NET):

Imports System.Data Imports System.Data.SqlClient Imports System.Data.SqlTypes Imports System.Collections '(...) Public Overloads Function ExecuteProc( ByVal pvsProcName as String) As DataSet Dim oCommand As SqlCommand Dim oDataAdaptor As SqlDataAdapter = New SqlDataAdapter 'Other Stuff here    Try     oCommand = CommandGet(ConnectionGet)     'Do some more stuff that's irrelevant    Catch oException As Exception     Throw oException    Finally     ConnectionClose(oCommand.Connection)     oCommand.Dispose()     oDataAdaptor.Dispose()   End Try End Function 

I get the following warning:

Variable 'oCommand' is used before it has been assigned a value. A null reference exception could result at runtime.` 

Edit: I found the answer right before I posted the question. I posted it to keep it around (I hate putting ten minutes into something to dump it willy nilly).

My subsequent question for VB.NET folks is this:

What would be the difference in the following two intializations:

Dim oCommand As SqlCommand = Nothing 

And:

Dim oCommand as New SqlComand 
  • 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-11T03:58:35+00:00Added an answer on May 11, 2026 at 3:58 am

    Well, the most obvious thing is that if CommandGet fails and throws an exception, oCommand won’t be set – it’ll still be null, so oCommand.Connection in the Finally block will throw a NullReferenceException.

    In addition, I’d say:

    • There’s no need for the Catch block
    • Two Using blocks (one for the command, one for the adapter) would be better IMO than explicit Try/Finally blocks

    EDIT: The difference between the two solutions is simple – one creates a ‘dummy’ command which you then ignore or dispose (but not both). The other explicitly sets a null reference, which you can check for.

    I would use a third solution though – a Using block:

    Using oCommand As CommandGet(ConnectionGet)   ' All the normal stuff in here ' End Using 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 90k
  • Answers 90k
  • 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 If you look at how Microsoft defines it's winapi handles… May 11, 2026 at 6:00 pm
  • Editorial Team
    Editorial Team added an answer public class BinarySearchTree<T extends Comparable<T>> A formal generics argument, in… May 11, 2026 at 6:00 pm
  • Editorial Team
    Editorial Team added an answer I don't think you're doing anything horribly wrong, just that… May 11, 2026 at 6:00 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

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.