gpt4 book ai didi

c# - 将逗号分隔的文本文件读取到 C# DataTable,列被截断为 255 个字符

转载 作者:太空狗 更新时间:2023-10-30 00:59:11 36 4
gpt4 key购买 nike

我们正在从 CSV 导入到 SQL。为此,我们正在读取 CSV 文件并使用 schema.ini 写入临时 .txt 文件。 (我还不确定为什么要写入这个临时文件,但这就是代码当前的工作方式)。从那里,我们使用以下连接字符串(对于 ASCII 文件)通过 OleDB 加载数据表。

"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + sPath + ";Extended Properties=\"text;HDR=Yes;FMT=Delimited\"";

我们遇到的问题是超过 255 个字符的字段会被截断。我在网上阅读了有关此问题的信息,似乎默认情况下,文本字段会因此被截断。

我在 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Excel 中设置了注册表设置 ImportMixedTypes=Majority TypeTypeGuessRows=0 >,希望 mycolumns 不再被解释为文本。这样做之后,临时 txt 文件从 CSV 文件正确写入,但是当我调用 dataAdapter.Fill 时,生成的 DataTable 仍然有一个被截断的值。

这是有问题的列定义。 CommaDelimited#txt 注释 2 false 234 true 130 0 0

如有任何帮助,我们将不胜感激。目前,我对使用任何 3d 派对代码来解决这个问题不感兴趣,必须有一种使用内置工具的方法。

这是表定义:

<Columns> 
<TABLE_NAME>CommaDelimited#txt</TABLE_NAME>
<COLUMN_NAME>Notes</COLUMN_NAME>
<ORDINAL_POSITION>2</ORDINAL_POSITION>
<COLUMN_HASDEFAULT>false</COLUMN_HASDEFAULT>
<COLUMN_FLAGS>234</COLUMN_FLAGS>
<IS_NULLABLE>true</IS_NULLABLE>
<DATA_TYPE>130</DATA_TYPE>
<CHARACTER_MAXIMUM_LENGTH>0</CHARACTER_MAXIMUM_LENGTH>
<CHARACTER_OCTET_LENGTH>0</CHARACTER_OCTET_LENGTH>
</Columns>

谢谢,

格雷格


我尝试编辑 schema.ini 指定宽度的文本,但这没有帮助(之前设置为备忘录)

[逗号分隔.txt]格式=CSVDelimited十进制符号=。Col1=注释文本宽度 5000

最佳答案

这是一个简单的类,用于读取带分隔符的文件并返回不截断字符串的数据表(所有字符串)。如果列名不在文件中,它有一个重载方法来指定列名。也许你可以使用它?

导入的命名空间

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

代码

/// <summary>
/// Simple class for reading delimited text files
/// </summary>
public class DelimitedTextReader
{
/// <summary>
/// Read the file and return a DataTable
/// </summary>
/// <param name="filename">File to read</param>
/// <param name="delimiter">Delimiting string</param>
/// <returns>Populated DataTable</returns>
public static DataTable ReadFile(string filename, string delimiter)
{
return ReadFile(filename, delimiter, null);
}
/// <summary>
/// Read the file and return a DataTable
/// </summary>
/// <param name="filename">File to read</param>
/// <param name="delimiter">Delimiting string</param>
/// <param name="columnNames">Array of column names</param>
/// <returns>Populated DataTable</returns>
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;

}
}

必需的命名空间

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

下面是调用它并上传到 SQL 数据库的示例:

        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));

关于c# - 将逗号分隔的文本文件读取到 C# DataTable,列被截断为 255 个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1051271/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com