473,500 Members | 1,686 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Convert.IsDBNull causes exception in C#

3 New Member
Hi All,

Could you help me in my problem in working on a project that imports excel file to a datatable the validation is to catch all null values in the excel file because it will should not allow null values in the data table. Unfortunately my code dud not work. Please see my code below.
Expand|Select|Wrap|Line Numbers
  1. for (int i = 0; i < columnNameInt.Length -1; i++)
  2. {
  3.     try
  4.     {
  5.         myDataTable.Columns[columnNameIntExportEx[i]].DefaultValue = 0;
  6.         myDataTable.Columns[columnNameIntExportEx[i]].AllowDBNull = false;
  7.         myDataTable.Columns[columnNameIntExportEx[i]].ColumnName = columnNameInt[i];
  8.     }
  9.     catch
  10.     {
  11.         MessageBox.Show(columnNameIntExportEx[i]);
  12.         for (int j = 0; j < myDataTable.Rows.Count; j++)
  13.         {
  14.             MessageBox.Show( "" + j);    
  15.             if(Convert.IsDBNull(myDataTable.Rows[j][i]))
  16.             {
  17.                 throw new Exception("Error found in row #[" + (j+1) + "]. Please check." );
  18.             }
  19.         }
  20.     }
  21. }
  22.  
Aug 6 '08 #1
4 5232
Plater
7,872 Recognized Expert Expert
What part did not work on it?

EDIT: Do you know in your FOR loop you are skipping the last item?
Aug 6 '08 #2
RICALJE
3 New Member
Hi. I think i know now the problem. the problem is

it always by pass the if statement dont know why. its strange..
if(myDataTable.Rows[j][i].Equals(System.DBNull.Value))

for example in my excel file i have only 1 null value it will continue to load in my datatable in C#.
Aug 8 '08 #3
Plater
7,872 Recognized Expert Expert
Well you should be checking for "" or empty string if its coming from excel.
Also, yuo should correct your FOR loop to include all the entries (you are never making it to the last entry with your current for loop logic)
Aug 8 '08 #4
RICALJE
3 New Member
thnx plater. i got the logic now. found out that the data table is correct but the datagrid have to contain a validation. we can close this issue now.:D
Aug 13 '08 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

19
3568
by: jim | last post by:
This line of code returns error 13, cast from 'DBNull' to type 'String' is not valid If IsDBNull(Clinics.Clinics.Item(A).Workphone) The <other code End I Clinics.Clinics is a dataset that...
4
3430
by: Jim | last post by:
I am having a problem with the IsDBNull function. When it checks what type of value is contained in the parameter that is passed to it, it does not successfully determine that it has a DBNull...
2
2002
by: Max | last post by:
Why doesn't this work: cbAutoBill.Checked = IIf(IsDBNull(reader("autobill")), False, Convert.ToBoolean(reader("autobill"))) Gives error: Object cannot be cast from DBNull to other types. But...
3
3572
by: Paul D. Fox | last post by:
I have this code snippet below where I'm loading all the labels based upon the retrieved record from the DataReader. Unfortunatley, some of the values are null, so I can't explicitly set the...
0
1680
by: Chris Crowe [MVP 1997 -> 2006] | last post by:
I am having major problems using GetStoredProcCommand and using Parameters in the same function call in the latest builds of the Enterprise Library Data. The error I get is : Failed to...
3
13694
by: GM | last post by:
Dear all, Could you all give me some guide on how to convert my big5 string to unicode using python? I already knew that I might use cjkcodecs or python 2.4 but I still don't have idea on what...
4
4081
by: Brad Isaacs | last post by:
I am using ASP.NET 2.0 codebehind Visual Basic, Visual Studio 2005 Working with DataSet creating a Data Access Layer via VS 2005. My error is when the code that is prewritten by VS 2005 Casts...
5
6858
by: Rainer Queck | last post by:
Hello NG, I have a typed dataset, where I want to check the column of a datarow if it is DBNull. How can the following code cause an Exception (what is does): if...
19
14743
by: tshad | last post by:
I have a value in my sql table set to tinyint (can't set to bit). I am trying to move it into a boolean field in my program and have tried: isTrue = (int)dbReader and isTrue =...
0
7134
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7014
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7229
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7395
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5485
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4609
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3108
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1429
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
311
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.