gpt4 book ai didi

c# - SQLDataAdapter 不返回最后一行数据

转载 作者:行者123 更新时间:2023-12-03 22:57:09 25 4
gpt4 key购买 nike

我正在编写一个程序,从 SQL 数据库中提取数据并将其输入到 Excel 中。我一切正常,只是我注意到在 Excel 中返​​回的行与在 SQL 中看到的不匹配。填充 DataTable 对象时,最后一行会被一致地修剪。

信息:Visual Studio 2015、SQL Server 11.0.5058。

我已经通过以下方法找到了如何检索 SQL 数据的问题。在执行此方法后,我进行了检查以输出返回了多少行,并且它始终比我应有的少一行(查询是相同的)。我认为这是一个索引问题,但考虑到以下方法的简单性,我不知道如何解决。我不明白为什么最后一行在放入数据表时被​​修剪掉。

private static DataTable PullData(string connstr, string query)
{
// Creating connection to SQL server
SqlConnection conn = new SqlConnection(connstr);
SqlCommand cmd = new SqlCommand(query, conn);
conn.Open();
DataTable dataTable = new DataTable();
// create data adapter
using (SqlDataAdapter da = new SqlDataAdapter(query, conn))
{
da.SelectCommand.CommandTimeout = 3600;
// query database and return the result to your datatable
da.Fill(dataTable);
da.Dispose();

}

conn.Close();
return dataTable;
}

****编辑****:谢谢蒂姆帮助我找出问题。事实证明它不在我的数据表中,而是在我的 Excel Range 对象中。与我上次使用这种将数据写入 Excel 的方法相比,Excel/SQL/C# 中的索引工作方式肯定有所不同。由于 Excel 从技术上讲将第 1 行视为列标题,因此我必须将 Excel Range 对象的行数加 1,以便它接受正确的总数:

Excel.Range range = wsheet.Range["A2", String.Format("{0}{1}", GetExcelColumnName(columns), rows+1)];

最佳答案

an identical query in SQL Studio returns all the requested data. I.E.: If a table returns 10 rows in SQL, it should return 11 rows to this method (because column names becomes the first row (row 0)).

您认为为什么列名位于第一行?您可以通过 dataTable.Columns 获取姓名:

foreach(DataColumn col in dataTable.Columns)
{
Console.WriteLine("Column:{0} Type:{1}", col.ColumnName, col.DataType);
}

wouldn't the DataTable object return a total number of rows that includes the column names in datatable.rows.count

不,dataTable.Rows只返回DataRow包含记录,而不是列。

所以你可以f.e.以这种方式列出所有 DataRows 的所有字段:

for(int i = 0; i < dataTable.Rows.Count; i++)
{
DataRow row = dataTable.Rows[i];
foreach (DataColumn col in dataTable.Columns)
{
Console.WriteLine("Row#:{0} Column:{1} Type:{2} Value:{3}",
i + 1,
col.ColumnName,
col.DataType,
row[col]);
}
}

Could the above foreach block be used to populate a two dimensional array? I'm using the below to dump all of the data into Excel: object[,] data = new object[dt.rows.count, dt.columns.count];

是的,这是可能的。相应地修改循环:

object[,] data = new object[dataTable.Rows.Count, dataTable.Columns.Count];
for (int rowIndex = 0; rowIndex < dataTable.Rows.Count; rowIndex++)
{
for (int colIndex = 0; colIndex < dataTable.Columns.Count; colIndex++)
{
data[rowIndex, colIndex] = dataTable.Rows[rowIndex][colIndex];
}
}

关于c# - SQLDataAdapter 不返回最后一行数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39489932/

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