TypeDetectionScheme Parameter (Connect-CSV Cmdlet)
カラムのデータ型を決定するための方法を指定します。
Syntax
Connect-CSV -TypeDetectionScheme string
Possible Values
None, RowScan, ColumnCountData Type
cstr
Default Value
"RowScan"
Remarks
| None | TypeDetectionScheme をNone に設定した場合は、すべてのカラムは文字列型で返されます。 |
| RowScan | TypeDetectionScheme をRowScan に設定した場合は、ヒューリスティックにデータ型を決定します。RowScanDepth ではスキャンする行数を決定します。 |
| ColumnCount | Setting TypeDetectionScheme to ColumnCount will control the number of columns to detect and will return all columns as the string type. The ColumnCount property determines the number of columns. |