Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the code below to read data from a excel sheet and add the data into a data sheet but when reading the file and inspecting the data in the data-table some of the data is missing.. I have been looking at this and have no idea why this would be the case.

excelConnectionString =
                  "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + fileName +
                      " ;Extended Properties=Excel 12.0";
            try
            {
                // Create Connection to Excel Workbook
                using (OleDbConnection connection =
                new OleDbConnection(excelConnectionString))
                {
                    connection.Open();
                    System.Data.DataTable dt = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
                    string[] excelSheet = new String[dt.Rows.Count];
                    int sheet = 0;
                    foreach (DataRow row in dt.Rows)
                    {
                        excelSheet[sheet] = row["Table_Name"].ToString();
                        sheet++;

                    }
                    for (int i = 0; i < excelSheet.Length; i++)
                    {
                        OleDbCommand command = new OleDbCommand
                             ("Select  * FROM [" + excelSheet[i] + "]", connection);

                        adapter.SelectCommand = command;
                        adapter.Fill(dt);
                        dataGridView1.DataSource = dt;
                    }
share|improve this question
Are you talking about the Data inside of Columns? – Derek Nov 15 '12 at 13:10

2 Answers

up vote 1 down vote accepted

No one can reproduce your question and find out certain problem. But you can find the similar question here.

Read Excel file through Datagridview

Export Excel to Datatable

share|improve this answer

Using OledbConnection to read in Excel Files you will run into a problem where by the limit on characters for each column is 255.

You could try adding "IMEX=1;" to the end of you connection string, but I'm not sure that will solve your issue.

share|improve this answer
this doesnt work – user1776590 Nov 15 '12 at 14:41
Is there more than 255 character in any of the columns? – Derek Nov 15 '12 at 14:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.