📜  每当我将数据从数据表传递到 sql 表以获取表中的大量数据时,它都使用 e+ 存储 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:04:56.655000             🧑  作者: Mango

代码示例1
change the datatype for every column of datatable and on sql side by using 
convert or cast function you can change it to another type
DataTable dt = new DataTable();
dt.columns.Add(1, typeof(string));
dt.columns.Add(2, typeof(string));