I have been getting an error in VB.net "object reference not set to an instance of object". Can you tell me what are the causes of this error? thanks..
|
|
|||||
|
|
|
sef, If the problem is with Database return results, I presume it is in this scenario:
To fix that:
edit: added code formatting tags ... |
|||
|
|
|
The object has not been initialized before use. At the top of your code file type:
|
|||
|
|
|
|
In general, under the .NET runtime, such a thing happens whenever a variable that's unassigned or assigned the value
and the NullReferenceException is the source of the "object reference not set to an instance of an object". |
||
|
|
|
|
actually, the user of my program reported that error. in my experience with the program, i always get that error only if my SQL query doesnt return any data or value (number value which i will use for computation). i already simulated in my backup database with the same data but did not encountered the same error. i was thinking that the error maybe caused by something else.. |
||
|
|
|
|
You can put a logging mechanism in your application so you can isolate the cause of the error. An Exception object has the StackTrace property which is a string that describes the contents of the call stack, with the most recent method call appearing first. By looking at it, you'll have more details on what might be causing the exception. |
||
|
|
|
|
And if you think it's occuring when no data is returned from a database query then maybe you should test the result before doing an operation on it?
|
||
|
|
|
|
When working with databases, you can get this error when you try to get a value form a field or row which doesn't exist. i.e. if you're using datasets and you use:
you get the object "reference not set to an instance of object" if tablename doesn't exists in the Dataset. The same for rows or fields in the datasets. |
||
|
|
|
|
tnx a lot guys.. ^_^ |
||
|
|
