Added support for specifying delimiter while exporting query results as CSV (#653)

This commit is contained in:
Chirag Rupani
2018-07-12 23:09:23 +05:30
committed by Matt Irvine
parent ebaec9c319
commit 77a08b4bdd
3 changed files with 66 additions and 5 deletions

View File

@@ -77,6 +77,11 @@ namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts
/// Include headers of columns in CSV
/// </summary>
public bool IncludeHeaders { get; set; }
/// <summary>
/// Delimeter for separating data items in CSV
/// </summary>
public string Delimiter { get; set; }
}
/// <summary>