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 8905485
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T02:24:18+00:00 2026-06-15T02:24:18+00:00

I am writing a very simple method to convert a csv to a datatable

  • 0

I am writing a very simple method to convert a csv to a datatable so it can be inserted into a SQL database. It works exactly how it should, unless I try to replace empty strings with DBNull.Value, then it throws an ArrayTypeMismatchException. The stream coming in is a simple comma-separated file with the data.

The problem code:

public static DataTable StreamToTable(Stream stream, bool headersAvailable, bool convertBlankToDBNull)
    {

        DataTable data = new DataTable();
        StreamReader reader = new StreamReader(stream);

        if (!reader.EndOfStream)
        {
            if (headersAvailable)
            {
                try
                {
                    //get headers from first line
                    string[] headers = reader.ReadLine().Split(',');

                    //construct headers
                    for (int i = 0; i < headers.Length; i++)
                    {
                        data.Columns.Add(headers[i]);
                    }
                }
                catch (IOException ioEx)
                {
                    return null;
                }
            }

            while (!reader.EndOfStream)
            {
                object[] row = reader.ReadLine().Split(',');

                if (convertBlankToDBNull)
                {
                    for (int i = 0; i < row.Length; i++)
                    {
                        if (row[i].ToString().Equals(""))
                        {
                            row[i] = DBNull.Value; //this is where I get the exception
                        }
                    }
                }
                data.Rows.Add(row);
            }

            return data;
        }
        else return null;
    }

I can’t figure out what I am doing wrong… I should be able to assign anything to the array because it’s an object array, so how can there be a type mismatch?

  • 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. Editorial Team
    Editorial Team
    2026-06-15T02:24:19+00:00Added an answer on June 15, 2026 at 2:24 am

    You’ve discovered the horrors of unsafe array covariance.

    row is a string[] that has been unsafely cast to object[]. Even though that cast succeeds, the array is still a string[] (since that’s what Split() returns), and cannot be used as an object[].
    In particular, it still can’t hold things that aren’t strings.

    Instead, you can create a new object[] and populate it with those strings:

    object[] row = Array.ConvertAll(
        reader.ReadLine().Split(','),
        s => (object)s
    );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a very simple method for my programming class and ran in to
I'm writing very simple app. It works OK, but when I hit a back
I am writing a very simple HTML code which is listed below. Written in
I'm currently writing a very simple game engine for an assignment and to make
I am writing a very simple application, for the iPhone. Unfortunately I am really
I'm writing a very simple web service, written in Python and run as CGI
I'm writing a very Simple Chat Application and would like to know how to
I am writing a very simple proxy wrapper for the reddit api so I
I'm writing a very simple and small wrapper around sqlite3, and use sqlite3_get_table() to
I'm writing a parser for a very simple grammar in javacc. It's beginning to

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.