Reading Comma Delimited Text File to C# DataTable, columns get truncated to 255 characters

后端 未结 6 1841
我寻月下人不归
我寻月下人不归 2021-02-10 21:14

We are importing from CSV to SQL. To do so, we are reading the CSV file and writing to a temporary .txt file using a schema.ini. (I\'m not sure yet exactly why are are writing t

6条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-10 21:35

    Here's a simple class for reading a delimited file and returning a DataTable (all strings) that doesn't truncate strings. It has an overloaded method to specify column names if they're not in the file. Maybe you can use it?

    Imported Namespaces

    using System;
    using System.Text;
    using System.Data;
    using System.IO;
    

    Code

    /// 
    /// Simple class for reading delimited text files
    /// 
    public class DelimitedTextReader
    {
        /// 
        /// Read the file and return a DataTable
        /// 
        /// File to read
        /// Delimiting string
        /// Populated DataTable
        public static DataTable ReadFile(string filename, string delimiter)
        {
            return ReadFile(filename, delimiter, null);
        }
        /// 
        /// Read the file and return a DataTable
        /// 
        /// File to read
        /// Delimiting string
        /// Array of column names
        /// Populated DataTable
        public static DataTable ReadFile(string filename, string delimiter, string[] columnNames)
        {
            //  Create the new table
            DataTable data = new DataTable();
            data.Locale = System.Globalization.CultureInfo.CurrentCulture;
    
            //  Check file
            if (!File.Exists(filename))
                throw new FileNotFoundException("File not found", filename);
    
            //  Process the file line by line
            string line;
            using (TextReader tr = new StreamReader(filename, Encoding.Default))
            {
                //  If column names were not passed, we'll read them from the file
                if (columnNames == null)
                {
                    //  Get the first line
                    line = tr.ReadLine();
                    if (string.IsNullOrEmpty(line))
                        throw new IOException("Could not read column names from file.");
                    columnNames = line.Split(new string[] { delimiter }, StringSplitOptions.RemoveEmptyEntries);
                }
    
                //  Add the columns to the data table
                foreach (string colName in columnNames)
                    data.Columns.Add(colName);
    
                //  Read the file
                string[] columns;
                while ((line = tr.ReadLine()) != null)
                {
                    columns = line.Split(new string[] { delimiter }, StringSplitOptions.None);
                    //  Ensure we have the same number of columns
                    if (columns.Length != columnNames.Length)
                    {
                        string message = "Data row has {0} columns and {1} are defined by column names.";
                        throw new DataException(string.Format(message, columns.Length, columnNames.Length));
                    }
                    data.Rows.Add(columns);
                }
            }
            return data;
    
        }
    }
    

    Required Namespaces

    using System;
    using System.Data;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using System.Diagnostics;
    

    Here's an example of calling it and uploading to a SQL Database:

            Stopwatch sw = new Stopwatch();
            TimeSpan tsRead;
            TimeSpan tsTrunc;
            TimeSpan tsBcp;
            int rows;
            sw.Start();
            using (DataTable dt = DelimitedTextReader.ReadFile(textBox1.Text, "\t"))
            {
                tsRead = sw.Elapsed;
                sw.Reset();
                rows = dt.Rows.Count;
                string connect = @"Data Source=.;Initial Catalog=MyDB;Integrated Security=SSPI";
                using (SqlConnection cn = new SqlConnection(connect))
                using (SqlCommand cmd = new SqlCommand("TRUNCATE TABLE dbo.UploadTable", cn))
                using (SqlBulkCopy bcp = new SqlBulkCopy(cn))
                {
                    cn.Open();
                    sw.Start();
                    cmd.ExecuteNonQuery();
                    tsTrunc = sw.Elapsed;
                    sw.Reset();
    
                    sw.Start();
                    bcp.DestinationTableName = "dbo.UploadTable";
                    bcp.ColumnMappings.Add("Column A", "ColumnA");
                    bcp.ColumnMappings.Add("Column D", "ColumnD");
                    bcp.WriteToServer(dt);
                    tsBcp = sw.Elapsed;
                    sw.Reset();
                }
            }
    
            string message = "File read:\t{0}\r\nTruncate:\t{1}\r\nBcp:\t{2}\r\n\r\nTotal time:\t{3}\r\nTotal rows:\t{4}";
            MessageBox.Show(string.Format(message, tsRead, tsTrunc, tsBcp, tsRead + tsTrunc + tsBcp, rows));
    

提交回复
热议问题