首页 > 解决方案 > 如何防止使用 SQL 加载的浮点 Excel 数据被截断

问题描述

当我使用 SQL 在我的 C# 软件中从 Excel 加载浮点数据时,数据最终被截断。

例如,我最终得到的不是 0,054034,而是 0,054。

我的代码的相关部分是:

DataTable part8 = new DataTable();
part8 = loadData(path, "SELECT * FROM [Gaszähler$X13:Y]");
Console.WriteLine(part8.Rows[10][1]);

private DataTable loadData(String path, String command)
{
    String filepath = path;
    String db_command = command;

    OleDbDataAdapter adapter = fetch(filepath, db_command);
    DataSet set = new DataSet();
    DataTable returntable = new DataTable();
    adapter.Fill(set, "table1");
    returntable = set.Tables["table1"];

    return returntable;
}

public OleDbDataAdapter fetch(string filepath, string com)
{
    OleDbConnection conn = new OleDbConnection(); // Die Verbindung
    string ConStr = // Der Connectionstring
         @"Provider=Microsoft.ACE.OLEDB.12.0; Data Source = " + filepath
        + @";Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1;ImportMixedTypes=Text;TypeGuessRows=0""";

    conn.ConnectionString = ConStr; //Der Connectionstring wird gesetzt

    OleDbCommand command = new OleDbCommand // Das OleDb Kommando
        (
            com, conn
        );
    OleDbDataAdapter myAdapter = new OleDbDataAdapter(command); // Ein Adapter

    return myAdapter;
}

标签: c#sqlexcelfloating-pointtruncated

解决方案


推荐阅读