Powershell Create DataTable(创建数据表)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell Create DataTable(创建数据表)相关的知识,希望对你有一定的参考价值。
参考技术A $In_dtInOak = [System.Data.DataTable]::new();$ret = $In_dtInOak.Columns.Add("C_KEY");
$ret = $In_dtInOak.Columns.Add("CONTENT");
$ret = $In_dtInOak.Columns.Add("LEVEL");
$xlApp = New-Object -ComObject Excel.Application;
$xlBook = $xlApp.Workbooks.Open("C:\Users\abc\Desktop\result.xlsx");
$xlSheet = $xlBook.Worksheets.Item(1);
$rMax = $xlSheet.UsedRange.Rows.Count;
for($rTemp = 2;$rTemp -le $rMax;$rTemp++)
$arr = @($xlSheet.Cells.Item($rTemp,1).Value2,$xlSheet.Cells.Item($rTemp,2).Value2,$xlSheet.Cells.Item($rTemp,3).Value2);
$ret = $In_dtInOak.Rows.Add($arr);
$xlSheet = $null;
$xlBook.Close($false);
$xlBook = $null;
$xlApp.Quit();
$xlApp = $null;
[System.GC]::Collect();
以上是关于Powershell Create DataTable(创建数据表)的主要内容,如果未能解决你的问题,请参考以下文章
Powershell Create DataTable(创建数据表)
sql 使用PowerShell和SMO为给定数据库中的MS SQL存储过程和视图创建drop + create脚本
SharePoint Online: Create Multiple Lists from a CSV File using PowerShell
令人惊讶的性能差异:List.Contains、Sorted List.ContainsKey、DataRowCollection.Contains、Data Table.Select、DataTab