We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kusto does not support Windows's quotation escaped TSV format, so Tabular data with escaped tabs causes an error about varying column numbers.
Options to fix - provide user with Clipboard Tabular-Data processing options:
Example code for converting Tabular data to Latin1CSV:
var stream = Clipboard.GetData(DataFormats.CommaSeparatedValue) as MemoryStream; var bytes = stream.ToArray(); var data = System.Text.ASCIIEncoding.Latin1.GetString(bytes);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Kusto does not support Windows's quotation escaped TSV format, so Tabular data with escaped tabs causes an error about varying column numbers.
Options to fix - provide user with Clipboard Tabular-Data processing options:
Example code for converting Tabular data to Latin1CSV:
The text was updated successfully, but these errors were encountered: