mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-21 01:25:42 -05:00
Added more options to SaveResultsAsCsvRequestParams (#669)
Fixes Microsoft/sqlopsstudio#203 Options: LineSeperator TextIdentifier Encoding
This commit is contained in:
committed by
Karl Burtram
parent
d09810980a
commit
84f62a3e85
@@ -79,9 +79,24 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
|
||||
public bool IncludeHeaders { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Delimeter for separating data items in CSV
|
||||
/// Delimiter for separating data items in CSV
|
||||
/// </summary>
|
||||
public string Delimiter { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// either CR, CRLF or LF to seperate rows in CSV
|
||||
/// </summary>
|
||||
public string LineSeperator { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Text identifier for alphanumeric columns in CSV
|
||||
/// </summary>
|
||||
public string TextIdentifier { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Encoding of the CSV file
|
||||
/// </summary>
|
||||
public string Encoding { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user