diff --git a/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionType.cs b/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionType.cs
index aabbb7d9..ffa04f46 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionType.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Connection/ConnectionType.cs
@@ -15,5 +15,6 @@ namespace Microsoft.SqlTools.ServiceLayer.Connection
{
public const string Default = "Default";
public const string Query = "Query";
+ public const string Edit = "Edit";
}
}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditCreateRowRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditCreateRowRequest.cs
new file mode 100644
index 00000000..2e4d7619
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditCreateRowRequest.cs
@@ -0,0 +1,35 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Parameters for the update cell request
+ ///
+ public class EditCreateRowParams : SessionOperationParams
+ {
+ }
+
+ ///
+ /// Parameters to return upon successful addition of a row to the edit session
+ ///
+ public class EditCreateRowResult
+ {
+ ///
+ /// The internal ID of the newly created row
+ ///
+ public long NewRowId { get; set; }
+ }
+
+ public class EditCreateRowRequest
+ {
+ public static readonly
+ RequestType Type =
+ RequestType.Create("edit/createRow");
+
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditDeleteRowRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditDeleteRowRequest.cs
new file mode 100644
index 00000000..248adcfb
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditDeleteRowRequest.cs
@@ -0,0 +1,30 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Parameters for identifying a row to mark for deletion
+ ///
+ public class EditDeleteRowParams : RowOperationParams
+ {
+ }
+
+ ///
+ /// Parameters to return upon successfully adding row delete to update cache
+ ///
+ public class EditDeleteRowResult
+ {
+ }
+
+ public class EditDeleteRowRequest
+ {
+ public static readonly
+ RequestType Type =
+ RequestType.Create("edit/deleteRow");
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditDisposeRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditDisposeRequest.cs
new file mode 100644
index 00000000..2520eb2c
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditDisposeRequest.cs
@@ -0,0 +1,28 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Parameters of the edit session dispose request
+ ///
+ public class EditDisposeParams : SessionOperationParams
+ {
+ }
+
+ ///
+ /// Object to return upon successful disposal of an edit session
+ ///
+ public class EditDisposeResult { }
+
+ public class EditDisposeRequest
+ {
+ public static readonly
+ RequestType Type =
+ RequestType.Create("edit/dispose");
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditInitializeRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditInitializeRequest.cs
new file mode 100644
index 00000000..72998823
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditInitializeRequest.cs
@@ -0,0 +1,42 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Parameters of the edit session initialize request
+ ///
+ public class EditInitializeParams : SessionOperationParams
+ {
+ ///
+ /// The object to use for generating an edit script
+ ///
+ public string ObjectName { get; set; }
+
+ ///
+ /// The type of the object to use for generating an edit script
+ ///
+ public string ObjectType { get; set; }
+ }
+
+ ///
+ /// Object to return upon successful completion of an edit session initialize request
+ ///
+ ///
+ /// Empty for now, since there isn't anything special to return on success
+ ///
+ public class EditInitializeResult
+ {
+ }
+
+ public class EditInitializeRequest
+ {
+ public static readonly
+ RequestType Type =
+ RequestType.Create("edit/initialize");
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditRevertRowRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditRevertRowRequest.cs
new file mode 100644
index 00000000..53049b67
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditRevertRowRequest.cs
@@ -0,0 +1,30 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Parameters for the revert row request
+ ///
+ public class EditRevertRowParams : RowOperationParams
+ {
+ }
+
+ ///
+ /// Parameters to return upon successful revert of a row
+ ///
+ public class EditRevertRowResult
+ {
+ }
+
+ public class EditRevertRowRequest
+ {
+ public static readonly
+ RequestType Type =
+ RequestType.Create("edit/revertRow");
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditSessionReadyEvent.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditSessionReadyEvent.cs
new file mode 100644
index 00000000..150b53c7
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditSessionReadyEvent.cs
@@ -0,0 +1,29 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ public class EditSessionReadyParams
+ {
+ ///
+ /// URI for the editor
+ ///
+ public string OwnerUri { get; set; }
+
+ ///
+ /// Whether or not the session is ready
+ ///
+ public bool Success { get; set; }
+ }
+
+ public class EditSessionReadyEvent
+ {
+ public static readonly
+ EventType Type =
+ EventType.Create("edit/sessionReady");
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditUpdateCellRequest.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditUpdateCellRequest.cs
new file mode 100644
index 00000000..b6114713
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/EditUpdateCellRequest.cs
@@ -0,0 +1,62 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Parameters for the update cell request
+ ///
+ public class EditUpdateCellParams : RowOperationParams
+ {
+ ///
+ /// Internal ID of the column to update
+ ///
+ public int ColumnId { get; set; }
+
+ ///
+ /// String representation of the value to assign to the cell
+ ///
+ public string NewValue { get; set; }
+ }
+
+ ///
+ /// Parameters to return upon successful update of the cell
+ ///
+ public class EditUpdateCellResult
+ {
+ ///
+ /// Whether or not the cell value was modified from the provided string.
+ /// If true, the client should replace the display value of the cell with the value
+ /// in
+ ///
+ public bool HasCorrections { get; set; }
+
+ ///
+ /// Whether or not the cell was reverted with the change.
+ /// If true, the client should unmark the cell as having an update and replace the
+ /// display value of the cell with the value in
+ ///
+ public bool IsRevert { get; set; }
+
+ ///
+ /// Whether or not the new value of the cell is null
+ ///
+ public bool IsNull { get; set; }
+
+ ///
+ /// The new string value of the cell
+ ///
+ public string NewValue { get; set; }
+ }
+
+ public class EditUpdateCellRequest
+ {
+ public static readonly
+ RequestType Type =
+ RequestType.Create("edit/updateCell");
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/RowOperationParams.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/RowOperationParams.cs
new file mode 100644
index 00000000..050d7676
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/RowOperationParams.cs
@@ -0,0 +1,18 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Abstract class for parameters that require an OwnerUri and a RowId
+ ///
+ public abstract class RowOperationParams : SessionOperationParams
+ {
+ ///
+ /// Internal ID of the row to revert
+ ///
+ public long RowId { get; set; }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/SessionOperationParams.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/SessionOperationParams.cs
new file mode 100644
index 00000000..e46ecf98
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Contracts/SessionOperationParams.cs
@@ -0,0 +1,18 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.Contracts
+{
+ ///
+ /// Abstract class for parameters that require an OwnerUri
+ ///
+ public abstract class SessionOperationParams
+ {
+ ///
+ /// Owner URI for the session to add new row to
+ ///
+ public string OwnerUri { get; set; }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/EditColumnWrapper.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/EditColumnWrapper.cs
new file mode 100644
index 00000000..28177766
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/EditColumnWrapper.cs
@@ -0,0 +1,41 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData
+{
+ ///
+ /// Small class that stores information needed by the edit data service to properly process
+ /// edits into scripts.
+ ///
+ public class EditColumnWrapper
+ {
+ ///
+ /// The DB column
+ ///
+ public DbColumnWrapper DbColumn { get; set; }
+
+ ///
+ /// Escaped identifier for the name of the column
+ ///
+ public string EscapedName { get; set; }
+
+ ///
+ /// Whether or not the column is used in a key to uniquely identify a row
+ ///
+ public bool IsKey { get; set; }
+
+ ///
+ /// Whether or not the column can be trusted for uniqueness
+ ///
+ public bool IsTrustworthyForUniqueness { get; set; }
+
+ ///
+ /// The ordinal ID of the column
+ ///
+ public int Ordinal { get; set; }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/EditDataService.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/EditDataService.cs
new file mode 100644
index 00000000..3f3c9cf1
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/EditDataService.cs
@@ -0,0 +1,286 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Collections.Concurrent;
+using System.Data.Common;
+using System.Threading.Tasks;
+using Microsoft.SqlTools.ServiceLayer.Connection;
+using Microsoft.SqlTools.ServiceLayer.EditData.Contracts;
+using Microsoft.SqlTools.ServiceLayer.Hosting;
+using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts.ExecuteRequests;
+using Microsoft.SqlTools.ServiceLayer.Utility;
+using ConnectionType = Microsoft.SqlTools.ServiceLayer.Connection.ConnectionType;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData
+{
+ ///
+ /// Service that handles edit data scenarios
+ ///
+ public class EditDataService
+ {
+ #region Singleton Instance Implementation
+
+ private static readonly Lazy LazyInstance = new Lazy(() => new EditDataService());
+
+ public static EditDataService Instance => LazyInstance.Value;
+
+ private EditDataService()
+ {
+ queryExecutionService = QueryExecutionService.Instance;
+ connectionService = ConnectionService.Instance;
+ metadataFactory = new SmoEditMetadataFactory();
+ }
+
+ internal EditDataService(QueryExecutionService qes, ConnectionService cs, IEditMetadataFactory factory)
+ {
+ queryExecutionService = qes;
+ connectionService = cs;
+ metadataFactory = factory;
+ }
+
+ #endregion
+
+ #region Member Variables
+
+ private readonly ConnectionService connectionService;
+
+ private readonly IEditMetadataFactory metadataFactory;
+
+ private readonly QueryExecutionService queryExecutionService;
+
+ private readonly Lazy> editSessions = new Lazy>(
+ () => new ConcurrentDictionary());
+
+ #endregion
+
+ #region Properties
+
+ ///
+ /// Dictionary mapping OwnerURIs to active sessions
+ ///
+ internal ConcurrentDictionary ActiveSessions => editSessions.Value;
+
+ #endregion
+
+ ///
+ /// Initializes the edit data service with the service host
+ ///
+ /// The service host to register commands/events with
+ public void InitializeService(ServiceHost serviceHost)
+ {
+ // Register handlers for requests
+ serviceHost.SetRequestHandler(EditCreateRowRequest.Type, HandleCreateRowRequest);
+ serviceHost.SetRequestHandler(EditDeleteRowRequest.Type, HandleDeleteRowRequest);
+ serviceHost.SetRequestHandler(EditDisposeRequest.Type, HandleDisposeRequest);
+ serviceHost.SetRequestHandler(EditInitializeRequest.Type, HandleInitializeRequest);
+ serviceHost.SetRequestHandler(EditRevertRowRequest.Type, HandleRevertRowRequest);
+ serviceHost.SetRequestHandler(EditUpdateCellRequest.Type, HandleUpdateCellRequest);
+ }
+
+ #region Request Handlers
+
+ internal async Task HandleSessionRequest(SessionOperationParams sessionParams,
+ RequestContext requestContext, Func sessionOperation)
+ {
+ try
+ {
+ Session session = GetActiveSessionOrThrow(sessionParams.OwnerUri);
+
+ // Get the result from execution of the session operation
+ TResult result = sessionOperation(session);
+ await requestContext.SendResult(result);
+ }
+ catch (Exception e)
+ {
+ await requestContext.SendError(e.Message);
+ }
+ }
+
+ internal Task HandleCreateRowRequest(EditCreateRowParams createParams,
+ RequestContext requestContext)
+ {
+ return HandleSessionRequest(createParams, requestContext, session =>
+ {
+ // Create the row and get the ID of the new row
+ long newRowId = session.CreateRow();
+ return new EditCreateRowResult
+ {
+ NewRowId = newRowId
+ };
+ });
+ }
+
+ internal Task HandleDeleteRowRequest(EditDeleteRowParams deleteParams,
+ RequestContext requestContext)
+ {
+ return HandleSessionRequest(deleteParams, requestContext, session =>
+ {
+ // Add the delete row to the edit cache
+ session.DeleteRow(deleteParams.RowId);
+ return new EditDeleteRowResult();
+ });
+ }
+
+ internal async Task HandleDisposeRequest(EditDisposeParams disposeParams,
+ RequestContext requestContext)
+ {
+ try
+ {
+ // Sanity check the owner URI
+ Validate.IsNotNullOrWhitespaceString(nameof(disposeParams.OwnerUri), disposeParams.OwnerUri);
+
+ // Attempt to remove the session
+ Session session;
+ if (!ActiveSessions.TryRemove(disposeParams.OwnerUri, out session))
+ {
+ await requestContext.SendError(SR.EditDataSessionNotFound);
+ return;
+ }
+
+ // Everything was successful, return success
+ await requestContext.SendResult(new EditDisposeResult());
+ }
+ catch (Exception e)
+ {
+ await requestContext.SendError(e.Message);
+ }
+ }
+
+ internal async Task HandleInitializeRequest(EditInitializeParams initParams,
+ RequestContext requestContext)
+ {
+ try
+ {
+ // Make sure we have info to process this request
+ Validate.IsNotNullOrWhitespaceString(nameof(initParams.OwnerUri), initParams.OwnerUri);
+ Validate.IsNotNullOrWhitespaceString(nameof(initParams.ObjectName), initParams.ObjectName);
+
+ // Setup a callback for when the query has successfully created
+ Func> queryCreateSuccessCallback = async query =>
+ {
+ await requestContext.SendResult(new EditInitializeResult());
+ return true;
+ };
+
+ // Setup a callback for when the query failed to be created
+ Func queryCreateFailureCallback = requestContext.SendError;
+
+ // Setup a callback for when the query completes execution successfully
+ Query.QueryAsyncEventHandler queryCompleteSuccessCallback =
+ q => QueryCompleteCallback(q, initParams, requestContext);
+
+ // Setup a callback for when the query completes execution with failure
+ Query.QueryAsyncEventHandler queryCompleteFailureCallback = query =>
+ {
+ EditSessionReadyParams readyParams = new EditSessionReadyParams
+ {
+ OwnerUri = initParams.OwnerUri,
+ Success = false
+ };
+ return requestContext.SendEvent(EditSessionReadyEvent.Type, readyParams);
+ };
+
+ // Put together a query for the results and execute it
+ ExecuteStringParams executeParams = new ExecuteStringParams
+ {
+ Query = $"SELECT * FROM {SqlScriptFormatter.FormatMultipartIdentifier(initParams.ObjectName)}",
+ OwnerUri = initParams.OwnerUri
+ };
+ await queryExecutionService.InterServiceExecuteQuery(executeParams, requestContext,
+ queryCreateSuccessCallback, queryCreateFailureCallback,
+ queryCompleteSuccessCallback, queryCompleteFailureCallback);
+ }
+ catch (Exception e)
+ {
+ await requestContext.SendError(e.Message);
+ }
+ }
+
+ internal Task HandleRevertRowRequest(EditRevertRowParams revertParams,
+ RequestContext requestContext)
+ {
+ return HandleSessionRequest(revertParams, requestContext, session =>
+ {
+ session.RevertRow(revertParams.RowId);
+ return new EditRevertRowResult();
+ });
+ }
+
+ internal Task HandleUpdateCellRequest(EditUpdateCellParams updateParams,
+ RequestContext requestContext)
+ {
+ return HandleSessionRequest(updateParams, requestContext,
+ session => session.UpdateCell(updateParams.RowId, updateParams.ColumnId, updateParams.NewValue));
+ }
+
+ #endregion
+
+ #region Private Helpers
+
+ ///
+ /// Returns the session with the given owner URI or throws if it can't be found
+ ///
+ /// If the edit session doesn't exist
+ /// Owner URI for the edit session
+ /// The edit session that corresponds to the owner URI
+ private Session GetActiveSessionOrThrow(string ownerUri)
+ {
+ // Sanity check the owner URI is provided
+ Validate.IsNotNullOrWhitespaceString(nameof(ownerUri), ownerUri);
+
+ // Attempt to get the session, throw if unable
+ Session session;
+ if (!ActiveSessions.TryGetValue(ownerUri, out session))
+ {
+ throw new Exception(SR.EditDataSessionNotFound);
+ }
+
+ return session;
+ }
+
+ private async Task QueryCompleteCallback(Query query, EditInitializeParams initParams,
+ IEventSender requestContext)
+ {
+ EditSessionReadyParams readyParams = new EditSessionReadyParams
+ {
+ OwnerUri = initParams.OwnerUri
+ };
+
+ try
+ {
+ // Validate the query for a session
+ ResultSet resultSet = Session.ValidateQueryForSession(query);
+
+ // Get a connection we'll use for SMO metadata lookup (and committing, later on)
+ DbConnection conn = await connectionService.GetOrOpenConnection(initParams.OwnerUri, ConnectionType.Edit);
+ var metadata = metadataFactory.GetObjectMetadata(conn, resultSet.Columns,
+ initParams.ObjectName, initParams.ObjectType);
+
+ // Create the session and add it to the sessions list
+ Session session = new Session(resultSet, metadata);
+ if (!ActiveSessions.TryAdd(initParams.OwnerUri, session))
+ {
+ throw new InvalidOperationException("Failed to create edit session, session already exists.");
+ }
+ readyParams.Success = true;
+ }
+ catch (Exception)
+ {
+ // Request that the query be disposed
+ await queryExecutionService.InterServiceDisposeQuery(initParams.OwnerUri, null, null);
+ readyParams.Success = false;
+ }
+
+ // Send the edit session ready notification
+ await requestContext.SendEvent(EditSessionReadyEvent.Type, readyParams);
+ }
+
+ #endregion
+
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/EditTableMetadata.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/EditTableMetadata.cs
new file mode 100644
index 00000000..21831a13
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/EditTableMetadata.cs
@@ -0,0 +1,99 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System.Collections.Generic;
+using System.Linq;
+using System.Diagnostics;
+using Microsoft.SqlServer.Management.Smo;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
+using Microsoft.SqlTools.ServiceLayer.Utility;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData
+{
+ ///
+ /// Provides metadata about the table or view being edited
+ ///
+ public class EditTableMetadata : IEditTableMetadata
+ {
+ private readonly List columns;
+ private readonly List keyColumns;
+
+ ///
+ /// Constructor that extracts useful metadata from the provided metadata objects
+ ///
+ /// DB columns from the ResultSet
+ /// SMO metadata object for the table/view being edited
+ public EditTableMetadata(IList dbColumns, TableViewTableTypeBase smoObject)
+ {
+ Validate.IsNotNull(nameof(dbColumns), dbColumns);
+ Validate.IsNotNull(nameof(smoObject), smoObject);
+
+ // Make sure that we have equal columns on both metadata providers
+ Debug.Assert(dbColumns.Count == smoObject.Columns.Count);
+
+ // Create the columns for edit usage
+ columns = new List();
+ for (int i = 0; i < dbColumns.Count; i++)
+ {
+ Column smoColumn = smoObject.Columns[i];
+ DbColumnWrapper dbColumn = dbColumns[i];
+
+ // A column is trustworthy for uniqueness if it can be updated or it has an identity
+ // property. If both of these are false (eg, timestamp) we can't trust it to uniquely
+ // identify a row in the table
+ bool isTrustworthyForUniqueness = dbColumn.IsUpdatable || smoColumn.Identity;
+
+ EditColumnWrapper column = new EditColumnWrapper
+ {
+ DbColumn = dbColumn,
+ Ordinal = i,
+ EscapedName = SqlScriptFormatter.FormatIdentifier(dbColumn.ColumnName),
+ IsTrustworthyForUniqueness = isTrustworthyForUniqueness,
+
+ // A key column is determined by whether it is in the primary key and trustworthy
+ IsKey = smoColumn.InPrimaryKey && isTrustworthyForUniqueness
+ };
+ columns.Add(column);
+ }
+
+ // Determine what the key columns are
+ keyColumns = columns.Where(c => c.IsKey).ToList();
+ if (keyColumns.Count == 0)
+ {
+ // We didn't find any explicit key columns. Instead, we'll use all columns that are
+ // trustworthy for uniqueness (usually all the columns)
+ keyColumns = columns.Where(c => c.IsTrustworthyForUniqueness).ToList();
+ }
+
+ // If a table is memory optimized it is Hekaton. If it's a view, then it can't be Hekaton
+ Table smoTable = smoObject as Table;
+ IsMemoryOptimized = smoTable != null && smoTable.IsMemoryOptimized;
+
+ // Escape the parts of the name
+ string[] objectNameParts = {smoObject.Schema, smoObject.Name};
+ EscapedMultipartName = SqlScriptFormatter.FormatMultipartIdentifier(objectNameParts);
+ }
+
+ ///
+ /// Read-only list of columns in the object being edited
+ ///
+ public IEnumerable Columns => columns.AsReadOnly();
+
+ ///
+ /// Full escaped multipart identifier for the object being edited
+ ///
+ public string EscapedMultipartName { get; }
+
+ ///
+ /// Whether or not the object being edited is memory optimized
+ ///
+ public bool IsMemoryOptimized { get; }
+
+ ///
+ /// Read-only list of columns that are used to uniquely identify a row
+ ///
+ public IEnumerable KeyColumns => keyColumns.AsReadOnly();
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/IEditMetadataFactory.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/IEditMetadataFactory.cs
new file mode 100644
index 00000000..633566fa
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/IEditMetadataFactory.cs
@@ -0,0 +1,26 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System.Data.Common;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData
+{
+ ///
+ /// Interface for a factory that generates metadata for an object to edit
+ ///
+ public interface IEditMetadataFactory
+ {
+ ///
+ /// Generates a edit-ready metadata object
+ ///
+ /// Connection to use for getting metadata
+ /// List of columns from a query against the object
+ /// Name of the object to return metadata for
+ /// Type of the object to return metadata for
+ /// Metadata about the object requested
+ IEditTableMetadata GetObjectMetadata(DbConnection connection, DbColumnWrapper[] columns, string objectName, string objectType);
+ }
+}
\ No newline at end of file
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/IEditTableMetadata.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/IEditTableMetadata.cs
new file mode 100644
index 00000000..67181ee8
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/IEditTableMetadata.cs
@@ -0,0 +1,36 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System.Collections.Generic;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData
+{
+ ///
+ /// An interface used in edit scenarios that defines properties for what columns are primary
+ /// keys, and other metadata of the table.
+ ///
+ public interface IEditTableMetadata
+ {
+ ///
+ /// All columns in the table that's being edited
+ ///
+ IEnumerable Columns { get; }
+
+ ///
+ /// The escaped name of the table that's being edited
+ ///
+ string EscapedMultipartName { get; }
+
+ ///
+ /// Whether or not this table is a memory optimized table
+ ///
+ bool IsMemoryOptimized { get; }
+
+ ///
+ /// Columns that can be used to uniquely identify the a row
+ ///
+ IEnumerable KeyColumns { get; }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/Session.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/Session.cs
new file mode 100644
index 00000000..3099b4d5
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/Session.cs
@@ -0,0 +1,215 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Collections.Concurrent;
+using System.IO;
+using System.Linq;
+using Microsoft.SqlTools.ServiceLayer.EditData.Contracts;
+using Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution;
+using Microsoft.SqlTools.ServiceLayer.Utility;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData
+{
+ ///
+ /// Represents an edit "session" bound to the results of a query, containing a cache of edits
+ /// that are pending. Provides logic for performing edit operations.
+ ///
+ public class Session
+ {
+
+ #region Member Variables
+
+ private readonly ResultSet associatedResultSet;
+ private readonly IEditTableMetadata objectMetadata;
+
+ #endregion
+
+ ///
+ /// Constructs a new edit session bound to the result set and metadat object provided
+ ///
+ /// The result set of the table to be edited
+ /// Metadata provider for the table to be edited
+ public Session(ResultSet resultSet, IEditTableMetadata objMetadata)
+ {
+ Validate.IsNotNull(nameof(resultSet), resultSet);
+ Validate.IsNotNull(nameof(objMetadata), objMetadata);
+
+ // Setup the internal state
+ associatedResultSet = resultSet;
+ objectMetadata = objMetadata;
+ NextRowId = associatedResultSet.RowCount;
+ EditCache = new ConcurrentDictionary();
+ }
+
+ #region Properties
+
+ ///
+ /// The internal ID for the next row in the table. Internal for unit testing purposes only.
+ ///
+ internal long NextRowId { get; private set; }
+
+ ///
+ /// The cache of pending updates. Internal for unit test purposes only
+ ///
+ internal ConcurrentDictionary EditCache { get;}
+
+ #endregion
+
+ #region Public Methods
+
+ ///
+ /// Validates that a query can be used for an edit session. The target result set is returned
+ ///
+ /// The query to validate
+ /// The result set to use
+ public static ResultSet ValidateQueryForSession(Query query)
+ {
+ Validate.IsNotNull(nameof(query), query);
+
+ // Determine if the query is valid for editing
+ // Criterion 1) Query has finished executing
+ if (!query.HasExecuted)
+ {
+ throw new InvalidOperationException(SR.EditDataQueryNotCompleted);
+ }
+
+ // Criterion 2) Query only has a single result set
+ ResultSet[] queryResultSets = query.Batches.SelectMany(b => b.ResultSets).ToArray();
+ if (queryResultSets.Length != 1)
+ {
+ throw new InvalidOperationException(SR.EditDataQueryImproperResultSets);
+ }
+
+ return query.Batches[0].ResultSets[0];
+ }
+
+ ///
+ /// Creates a new row update and adds it to the update cache
+ ///
+ /// If inserting into cache fails
+ /// The internal ID of the newly created row
+ public long CreateRow()
+ {
+ // Create a new row ID (atomically, since this could be accesses concurrently)
+ long newRowId = NextRowId++;
+
+ // Create a new row create update and add to the update cache
+ RowCreate newRow = new RowCreate(newRowId, associatedResultSet, objectMetadata);
+ if (!EditCache.TryAdd(newRowId, newRow))
+ {
+ // Revert the next row ID
+ NextRowId--;
+ throw new InvalidOperationException(SR.EditDataFailedAddRow);
+ }
+
+ return newRowId;
+ }
+
+ ///
+ /// Creates a delete row update and adds it to the update cache
+ ///
+ ///
+ /// If row requested to delete already has a pending change in the cache
+ ///
+ /// The internal ID of the row to delete
+ public void DeleteRow(long rowId)
+ {
+ // Sanity check the row ID
+ if (rowId >= NextRowId || rowId < 0)
+ {
+ throw new ArgumentOutOfRangeException(nameof(rowId), SR.EditDataRowOutOfRange);
+ }
+
+ // Create a new row delete update and add to cache
+ RowDelete deleteRow = new RowDelete(rowId, associatedResultSet, objectMetadata);
+ if (!EditCache.TryAdd(rowId, deleteRow))
+ {
+ throw new InvalidOperationException(SR.EditDataUpdatePending);
+ }
+ }
+
+ ///
+ /// Removes a pending row update from the update cache.
+ ///
+ ///
+ /// If a pending row update with the given row ID does not exist.
+ ///
+ /// The internal ID of the row to reset
+ public void RevertRow(long rowId)
+ {
+ // Attempt to remove the row with the given ID
+ RowEditBase removedEdit;
+ if (!EditCache.TryRemove(rowId, out removedEdit))
+ {
+ throw new ArgumentOutOfRangeException(nameof(rowId), SR.EditDataUpdateNotPending);
+ }
+ }
+
+ public string ScriptEdits(string outputPath)
+ {
+ // Validate the output path
+ // @TODO: Reinstate this code once we have an interface around file generation
+ //if (outputPath == null)
+ //{
+ // // If output path isn't provided, we'll use a temporary location
+ // outputPath = Path.GetTempFileName();
+ //}
+ //else
+ if (outputPath == null || outputPath.Trim() == string.Empty)
+ {
+ // If output path is empty, that's an error
+ throw new ArgumentNullException(nameof(outputPath), SR.EditDataScriptFilePathNull);
+ }
+
+ // Open a handle to the output file
+ using (FileStream outputStream = File.OpenWrite(outputPath))
+ using (TextWriter outputWriter = new StreamWriter(outputStream))
+ {
+
+ // Convert each update in the cache into an insert/update/delete statement
+ foreach (RowEditBase rowEdit in EditCache.Values)
+ {
+ outputWriter.WriteLine(rowEdit.GetScript());
+ }
+ }
+
+ // Return the location of the generated script
+ return outputPath;
+ }
+
+ ///
+ /// Performs an update to a specific cell in a row. If the row has not already been
+ /// initialized with a record in the update cache, one is created.
+ ///
+ /// If adding a new update row fails
+ ///
+ /// If the row that is requested to be edited is beyond the rows in the results and the
+ /// rows that are being added.
+ ///
+ /// The internal ID of the row to edit
+ /// The ordinal of the column to edit in the row
+ /// The new string value of the cell to update
+ public EditUpdateCellResult UpdateCell(long rowId, int columnId, string newValue)
+ {
+ // Sanity check to make sure that the row ID is in the range of possible values
+ if (rowId >= NextRowId || rowId < 0)
+ {
+ throw new ArgumentOutOfRangeException(nameof(rowId), SR.EditDataRowOutOfRange);
+ }
+
+ // Attempt to get the row that is being edited, create a new update object if one
+ // doesn't exist
+ RowEditBase editRow = EditCache.GetOrAdd(rowId, new RowUpdate(rowId, associatedResultSet, objectMetadata));
+
+ // Pass the call to the row update
+ return editRow.SetCell(columnId, newValue);
+ }
+
+ #endregion
+
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/SmoEditMetadataFactory.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/SmoEditMetadataFactory.cs
new file mode 100644
index 00000000..696d1ceb
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/SmoEditMetadataFactory.cs
@@ -0,0 +1,68 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Data.Common;
+using System.Data.SqlClient;
+using Microsoft.SqlServer.Management.Common;
+using Microsoft.SqlServer.Management.Smo;
+using Microsoft.SqlTools.ServiceLayer.Connection.ReliableConnection;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData
+{
+ ///
+ /// Factory that generates metadata using a combination of SMO and SqlClient metadata
+ ///
+ public class SmoEditMetadataFactory : IEditMetadataFactory
+ {
+ ///
+ /// Generates a edit-ready metadata object using SMO
+ ///
+ /// Connection to use for getting metadata
+ /// List of columns from a query against the object
+ /// Name of the object to return metadata for
+ /// Type of the object to return metadata for
+ /// Metadata about the object requested
+ public IEditTableMetadata GetObjectMetadata(DbConnection connection, DbColumnWrapper[] columns, string objectName, string objectType)
+ {
+ // Get a connection to the database for SMO purposes
+ SqlConnection sqlConn = connection as SqlConnection;
+ if (sqlConn == null)
+ {
+ // It's not actually a SqlConnection, so let's try a reliable SQL connection
+ ReliableSqlConnection reliableConn = connection as ReliableSqlConnection;
+ if (reliableConn == null)
+ {
+ // If we don't have connection we can use with SMO, just give up on using SMO
+ return null;
+ }
+
+ // We have a reliable connection, use the underlying connection
+ sqlConn = reliableConn.GetUnderlyingConnection();
+ }
+
+ Server server = new Server(new ServerConnection(sqlConn));
+ TableViewTableTypeBase result;
+ switch (objectType.ToLowerInvariant())
+ {
+ case "table":
+ result = server.Databases[sqlConn.Database].Tables[objectName];
+ break;
+ case "view":
+ result = server.Databases[sqlConn.Database].Views[objectName];
+ break;
+ default:
+ throw new ArgumentOutOfRangeException(nameof(objectType), SR.EditDataUnsupportedObjectType(objectType));
+ }
+ if (result == null)
+ {
+ throw new ArgumentOutOfRangeException(nameof(objectName), SR.EditDataObjectMetadataNotFound);
+ }
+
+ return new EditTableMetadata(columns, result);
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/CellUpdate.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/CellUpdate.cs
new file mode 100644
index 00000000..d818b6b8
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/CellUpdate.cs
@@ -0,0 +1,202 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Data.Common;
+using System.Globalization;
+using System.Text.RegularExpressions;
+using Microsoft.SqlTools.ServiceLayer.Utility;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement
+{
+ ///
+ /// Representation of a cell that should have a value inserted or updated
+ ///
+ public sealed class CellUpdate
+ {
+ private const string NullString = @"NULL";
+ private const string TextNullString = @"'NULL'";
+ private static readonly Regex HexRegex = new Regex("0x[0-9A-F]+", RegexOptions.Compiled | RegexOptions.IgnoreCase);
+
+ ///
+ /// Constructs a new cell update based on the the string value provided and the column
+ /// for the cell.
+ ///
+ /// Column the cell will be under
+ /// The string from the client to convert to an object
+ public CellUpdate(DbColumn column, string valueAsString)
+ {
+ Validate.IsNotNull(nameof(column), column);
+ Validate.IsNotNull(nameof(valueAsString), valueAsString);
+
+ // Store the state that won't be changed
+ Column = column;
+ Type columnType = column.DataType;
+
+ // Check for null
+ if (valueAsString == NullString)
+ {
+ Value = DBNull.Value;
+ ValueAsString = valueAsString;
+ }
+ else if (columnType == typeof(byte[]))
+ {
+ // Binary columns need special attention
+ ProcessBinaryCell(valueAsString);
+ }
+ else if (columnType == typeof(string))
+ {
+ // Special case for strings because the string value should stay the same as provided
+ // If user typed 'NULL' they mean NULL as text
+ Value = valueAsString == TextNullString ? NullString : valueAsString;
+ ValueAsString = valueAsString;
+ }
+ else if (columnType == typeof(Guid))
+ {
+ Value = Guid.Parse(valueAsString);
+ ValueAsString = Value.ToString();
+ }
+ else if (columnType == typeof(TimeSpan))
+ {
+ Value = TimeSpan.Parse(valueAsString, CultureInfo.CurrentCulture);
+ ValueAsString = Value.ToString();
+ }
+ else if (columnType == typeof(DateTimeOffset))
+ {
+ Value = DateTimeOffset.Parse(valueAsString, CultureInfo.CurrentCulture);
+ ValueAsString = Value.ToString();
+ }
+ else if (columnType == typeof(bool))
+ {
+ ProcessBooleanCell(valueAsString);
+ }
+ // @TODO: Microsoft.SqlServer.Types.SqlHierarchyId
+ else
+ {
+ // Attempt to go straight to the destination type, if we know what it is, otherwise
+ // leave it as a string
+ Value = columnType != null
+ ? Convert.ChangeType(valueAsString, columnType, CultureInfo.CurrentCulture)
+ : valueAsString;
+ ValueAsString = Value.ToString();
+ }
+ }
+
+ #region Properties
+
+ ///
+ /// The column that the cell will be placed in
+ ///
+ public DbColumn Column { get; }
+
+ ///
+ /// The object representation of the cell provided by the client
+ ///
+ public object Value { get; private set; }
+
+ ///
+ /// converted to a string
+ ///
+ public string ValueAsString { get; private set; }
+
+ #endregion
+
+ #region Private Helpers
+
+ private void ProcessBinaryCell(string valueAsString)
+ {
+ string trimmedString = valueAsString.Trim();
+
+ byte[] byteArray;
+ uint uintVal;
+ if (uint.TryParse(trimmedString, NumberStyles.None, CultureInfo.InvariantCulture, out uintVal))
+ {
+ // Get the bytes
+ byteArray = BitConverter.GetBytes(uintVal);
+ if (BitConverter.IsLittleEndian)
+ {
+ Array.Reverse(byteArray);
+ }
+ Value = byteArray;
+
+ // User typed something numeric (may be hex or dec)
+ if ((uintVal & 0xFFFFFF00) == 0)
+ {
+ // Value can fit in a single byte
+ Value = new[] { byteArray[3] };
+ }
+ else if ((uintVal & 0xFFFF0000) == 0)
+ {
+ // Value can fit in two bytes
+ Value = new[] { byteArray[2], byteArray[3] };
+ }
+ else if ((uintVal & 0xFF000000) == 0)
+ {
+ // Value can fit in three bytes
+ Value = new[] { byteArray[1], byteArray[2], byteArray[3] };
+ }
+ }
+ else if (HexRegex.IsMatch(valueAsString))
+ {
+ // User typed something that starts with a hex identifier (0x)
+ // Strip off the 0x, pad with zero if necessary
+ trimmedString = trimmedString.Substring(2);
+ if (trimmedString.Length % 2 == 1)
+ {
+ trimmedString = "0" + trimmedString;
+ }
+
+ // Convert to a byte array
+ byteArray = new byte[trimmedString.Length / 2];
+ for (int i = 0; i < trimmedString.Length; i += 2)
+ {
+ string bString = $"{trimmedString[i]}{trimmedString[i + 1]}";
+ byte bVal = byte.Parse(bString, NumberStyles.AllowHexSpecifier, CultureInfo.InvariantCulture);
+ byteArray[i / 2] = bVal;
+ }
+ Value = byteArray;
+ }
+ else
+ {
+ // Invalid format
+ throw new FormatException(SR.EditDataInvalidFormatBinary);
+ }
+
+ // Generate the hex string as the return value
+ ValueAsString = "0x" + BitConverter.ToString((byte[])Value).Replace("-", string.Empty);
+ }
+
+ private void ProcessBooleanCell(string valueAsString)
+ {
+ // Allow user to enter 1 or 0
+ string trimmedString = valueAsString.Trim();
+ int intVal;
+ if (int.TryParse(trimmedString, out intVal))
+ {
+ switch (intVal)
+ {
+ case 1:
+ Value = true;
+ break;
+ case 0:
+ Value = false;
+ break;
+ default:
+ throw new ArgumentOutOfRangeException(nameof(valueAsString),
+ SR.EditDataInvalidFormatBoolean);
+ }
+ }
+ else
+ {
+ // Allow user to enter true or false
+ Value = bool.Parse(valueAsString);
+ }
+
+ ValueAsString = Value.ToString();
+ }
+
+ #endregion
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowCreate.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowCreate.cs
new file mode 100644
index 00000000..7e6c47a8
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowCreate.cs
@@ -0,0 +1,103 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Collections.Generic;
+using Microsoft.SqlTools.ServiceLayer.EditData.Contracts;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
+using Microsoft.SqlTools.ServiceLayer.Utility;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement
+{
+ ///
+ /// Represents a row that should be added to the result set. Generates an INSERT statement.
+ ///
+ public sealed class RowCreate : RowEditBase
+ {
+ private const string InsertStatement = "INSERT INTO {0}({1}) VALUES ({2})";
+
+ private readonly CellUpdate[] newCells;
+
+ ///
+ /// Creates a new Row Creation edit to the result set
+ ///
+ /// Internal ID of the row that is being created
+ /// The result set for the rows in the table we're editing
+ /// The metadata for table we're editing
+ public RowCreate(long rowId, ResultSet associatedResultSet, IEditTableMetadata associatedMetadata)
+ : base(rowId, associatedResultSet, associatedMetadata)
+ {
+ newCells = new CellUpdate[associatedResultSet.Columns.Length];
+ }
+
+ ///
+ /// Generates the INSERT INTO statement that will apply the row creation
+ ///
+ /// INSERT INTO statement
+ public override string GetScript()
+ {
+ List columnNames = new List();
+ List columnValues = new List();
+
+ // Build the column list and value list
+ for (int i = 0; i < AssociatedResultSet.Columns.Length; i++)
+ {
+ DbColumnWrapper column = AssociatedResultSet.Columns[i];
+ CellUpdate cell = newCells[i];
+
+ // If the column is not updatable, then skip it
+ if (!column.IsUpdatable)
+ {
+ continue;
+ }
+
+ // If the cell doesn't have a value, but is updatable, don't try to create the script
+ if (cell == null)
+ {
+ throw new InvalidOperationException(SR.EditDataCreateScriptMissingValue);
+ }
+
+ // Add the column and the data to their respective lists
+ columnNames.Add(SqlScriptFormatter.FormatIdentifier(column.ColumnName));
+ columnValues.Add(SqlScriptFormatter.FormatValue(cell.Value, column));
+ }
+
+ // Put together the components of the statement
+ string joinedColumnNames = string.Join(", ", columnNames);
+ string joinedColumnValues = string.Join(", ", columnValues);
+ return string.Format(InsertStatement, AssociatedObjectMetadata.EscapedMultipartName, joinedColumnNames,
+ joinedColumnValues);
+ }
+
+ ///
+ /// Sets the value of a cell in the row to be added
+ ///
+ /// Ordinal of the column to set in the row
+ /// String representation from the client of the value to add
+ ///
+ /// The updated value as a string of the object generated from
+ ///
+ public override EditUpdateCellResult SetCell(int columnId, string newValue)
+ {
+ // Validate the column and the value and convert to object
+ ValidateColumnIsUpdatable(columnId);
+ CellUpdate update = new CellUpdate(AssociatedResultSet.Columns[columnId], newValue);
+
+ // Add the cell update to the
+ newCells[columnId] = update;
+
+ // Put together a result of the change
+ EditUpdateCellResult eucr = new EditUpdateCellResult
+ {
+ HasCorrections = update.ValueAsString != newValue,
+ NewValue = update.ValueAsString != newValue ? update.ValueAsString : null,
+ IsNull = update.Value == DBNull.Value,
+ IsRevert = false // Editing cells of new rows cannot be reverts
+ };
+ return eucr;
+ }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowDelete.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowDelete.cs
new file mode 100644
index 00000000..f585691d
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowDelete.cs
@@ -0,0 +1,55 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Globalization;
+using Microsoft.SqlTools.ServiceLayer.EditData.Contracts;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement
+{
+ ///
+ /// Represents a row that should be deleted. This will generate a DELETE statement
+ ///
+ public sealed class RowDelete : RowEditBase
+ {
+ private const string DeleteStatement = "DELETE FROM {0} {1}";
+ private const string DeleteMemoryOptimizedStatement = "DELETE FROM {0} WITH(SNAPSHOT) {1}";
+
+ ///
+ /// Constructs a new RowDelete object
+ ///
+ /// Internal ID of the row to be deleted
+ /// Result set that is being edited
+ /// Improved metadata of the object being edited
+ public RowDelete(long rowId, ResultSet associatedResultSet, IEditTableMetadata associatedMetadata)
+ : base(rowId, associatedResultSet, associatedMetadata)
+ {
+ }
+
+ ///
+ /// Generates a DELETE statement to delete this row
+ ///
+ /// String of the DELETE statement
+ public override string GetScript()
+ {
+ string formatString = AssociatedObjectMetadata.IsMemoryOptimized ? DeleteMemoryOptimizedStatement : DeleteStatement;
+ return string.Format(CultureInfo.InvariantCulture, formatString,
+ AssociatedObjectMetadata.EscapedMultipartName, GetWhereClause(false).CommandText);
+ }
+
+ ///
+ /// This method should not be called. A cell cannot be updated on a row that is pending
+ /// deletion.
+ ///
+ /// Always thrown
+ /// Ordinal of the column to update
+ /// New value for the cell
+ public override EditUpdateCellResult SetCell(int columnId, string newValue)
+ {
+ throw new InvalidOperationException(SR.EditDataDeleteSetCell);
+ }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowEdit.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowEdit.cs
new file mode 100644
index 00000000..e36c31e0
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowEdit.cs
@@ -0,0 +1,197 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Collections.Generic;
+using System.Data.Common;
+using System.Data.SqlClient;
+using System.Linq;
+using Microsoft.SqlTools.ServiceLayer.EditData.Contracts;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
+using Microsoft.SqlTools.ServiceLayer.Utility;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement
+{
+ ///
+ /// Base class for row edit operations. Provides basic information and helper functionality
+ /// that all RowEdit implementations can use. Defines functionality that must be implemented
+ /// in all child classes.
+ ///
+ public abstract class RowEditBase
+ {
+ ///
+ /// Internal parameterless constructor, required for mocking
+ ///
+ protected internal RowEditBase() { }
+
+ ///
+ /// Base constructor for a row edit. Stores the state that should be available to all row
+ /// edit implementations.
+ ///
+ /// The internal ID of the row that is being edited
+ /// The result set that will be updated
+ /// Metadata provider for the object to edit
+ protected RowEditBase(long rowId, ResultSet associatedResultSet, IEditTableMetadata associatedMetadata)
+ {
+ RowId = rowId;
+ AssociatedResultSet = associatedResultSet;
+ AssociatedObjectMetadata = associatedMetadata;
+ }
+
+ #region Properties
+
+ ///
+ /// The internal ID of the row to which this edit applies, relative to the result set
+ ///
+ public long RowId { get; }
+
+ ///
+ /// The result set that is associated with this row edit
+ ///
+ public ResultSet AssociatedResultSet { get; }
+
+ ///
+ /// The metadata for the table this edit is associated to
+ ///
+ public IEditTableMetadata AssociatedObjectMetadata { get; }
+
+ #endregion
+
+ ///
+ /// Converts the row edit into a SQL statement
+ ///
+ /// A SQL statement
+ public abstract string GetScript();
+
+ ///
+ /// Changes the value a cell in the row.
+ ///
+ /// Ordinal of the column in the row to update
+ /// The new value for the cell
+ /// The value of the cell after applying validation logic
+ public abstract EditUpdateCellResult SetCell(int columnId, string newValue);
+
+ ///
+ /// Performs validation of column ID and if column can be updated.
+ ///
+ ///
+ /// If is less than 0 or greater than the number of columns
+ /// in the row
+ ///
+ /// If the column is not updatable
+ /// Ordinal of the column to update
+ protected void ValidateColumnIsUpdatable(int columnId)
+ {
+ // Sanity check that the column ID is within the range of columns
+ if (columnId >= AssociatedResultSet.Columns.Length || columnId < 0)
+ {
+ throw new ArgumentOutOfRangeException(nameof(columnId), SR.EditDataColumnIdOutOfRange);
+ }
+
+ DbColumnWrapper column = AssociatedResultSet.Columns[columnId];
+ if (!column.IsUpdatable)
+ {
+ throw new InvalidOperationException(SR.EditDataColumnCannotBeEdited);
+ }
+ }
+
+ ///
+ /// Generates a WHERE clause that uses the key columns of the table to uniquely identity
+ /// the row that will be updated.
+ ///
+ ///
+ /// Whether or not to generate a parameterized where clause. If true verbatim values
+ /// will be replaced with paremeters (like @Param12). The parameters must be added to the
+ /// SqlCommand used to execute the commit.
+ ///
+ /// A object
+ protected WhereClause GetWhereClause(bool parameterize)
+ {
+ WhereClause output = new WhereClause();
+
+ if (!AssociatedObjectMetadata.KeyColumns.Any())
+ {
+ throw new InvalidOperationException(SR.EditDataColumnNoKeyColumns);
+ }
+
+ IList row = AssociatedResultSet.GetRow(RowId);
+ foreach (EditColumnWrapper col in AssociatedObjectMetadata.KeyColumns)
+ {
+ // Put together a clause for the value of the cell
+ DbCellValue cellData = row[col.Ordinal];
+ string cellDataClause;
+ if (cellData.IsNull)
+ {
+ cellDataClause = "IS NULL";
+ }
+ else
+ {
+ if (cellData.RawObject is byte[] ||
+ col.DbColumn.DataTypeName.Equals("TEXT", StringComparison.OrdinalIgnoreCase) ||
+ col.DbColumn.DataTypeName.Equals("NTEXT", StringComparison.OrdinalIgnoreCase))
+ {
+ // Special cases for byte[] and TEXT/NTEXT types
+ cellDataClause = "IS NOT NULL";
+ }
+ else
+ {
+ // General case is to just use the value from the cell
+ if (parameterize)
+ {
+ // Add a parameter and parameterized clause component
+ // NOTE: We include the row ID to make sure the parameter is unique if
+ // we execute multiple row edits at once.
+ string paramName = $"@Param{RowId}{col.Ordinal}";
+ cellDataClause = $"= {paramName}";
+ output.Parameters.Add(new SqlParameter(paramName, col.DbColumn.SqlDbType));
+ }
+ else
+ {
+ // Add the clause component with the formatted value
+ cellDataClause = $"= {SqlScriptFormatter.FormatValue(cellData, col.DbColumn)}";
+ }
+ }
+ }
+
+ string completeComponent = $"({col.EscapedName} {cellDataClause})";
+ output.ClauseComponents.Add(completeComponent);
+ }
+
+ return output;
+ }
+
+ ///
+ /// Represents a WHERE clause that can be used for identifying a row in a table.
+ ///
+ protected class WhereClause
+ {
+ ///
+ /// Constructs and initializes a new where clause
+ ///
+ public WhereClause()
+ {
+ Parameters = new List();
+ ClauseComponents = new List();
+ }
+
+ ///
+ /// SqlParameters used in a parameterized query. If this object was generated without
+ /// parameterization, this will be an empty list
+ ///
+ public List Parameters { get; }
+
+ ///
+ /// Strings that make up the WHERE clause, such as "([col1] = 'something')"
+ ///
+ public List ClauseComponents { get; }
+
+ ///
+ /// Total text of the WHERE clause that joins all the components with AND
+ ///
+ public string CommandText => $"WHERE {string.Join(" AND ", ClauseComponents)}";
+ }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowUpdate.cs b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowUpdate.cs
new file mode 100644
index 00000000..482e3fa5
--- /dev/null
+++ b/src/Microsoft.SqlTools.ServiceLayer/EditData/UpdateManagement/RowUpdate.cs
@@ -0,0 +1,110 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Collections.Generic;
+using System.Globalization;
+using System.Linq;
+using Microsoft.SqlTools.ServiceLayer.EditData.Contracts;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution;
+using Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts;
+using Microsoft.SqlTools.ServiceLayer.Utility;
+
+namespace Microsoft.SqlTools.ServiceLayer.EditData.UpdateManagement
+{
+ ///
+ /// An update to apply to a row of a result set. This will generate an UPDATE statement.
+ ///
+ public sealed class RowUpdate : RowEditBase
+ {
+ private const string UpdateStatement = "UPDATE {0} SET {1} {2}";
+ private const string UpdateStatementMemoryOptimized = "UPDATE {0} WITH (SNAPSHOT) SET {1} {2}";
+
+ private readonly Dictionary cellUpdates;
+ private readonly IList associatedRow;
+
+ ///
+ /// Constructs a new RowUpdate to be added to the cache.
+ ///
+ /// Internal ID of the row that will be updated with this object
+ /// Result set for the rows of the object to update
+ /// Metadata provider for the object to update
+ public RowUpdate(long rowId, ResultSet associatedResultSet, IEditTableMetadata associatedMetadata)
+ : base(rowId, associatedResultSet, associatedMetadata)
+ {
+ cellUpdates = new Dictionary();
+ associatedRow = associatedResultSet.GetRow(rowId);
+ }
+
+ ///
+ /// Constructs an update statement to change the associated row.
+ ///
+ /// An UPDATE statement
+ public override string GetScript()
+ {
+ // Build the "SET" portion of the statement
+ IEnumerable setComponents = cellUpdates.Values.Select(cellUpdate =>
+ {
+ string formattedColumnName = SqlScriptFormatter.FormatIdentifier(cellUpdate.Column.ColumnName);
+ string formattedValue = SqlScriptFormatter.FormatValue(cellUpdate.Value, cellUpdate.Column);
+ return $"{formattedColumnName} = {formattedValue}";
+ });
+ string setClause = string.Join(", ", setComponents);
+
+ // Get the where clause
+ string whereClause = GetWhereClause(false).CommandText;
+
+ // Put it all together
+ string formatString = AssociatedObjectMetadata.IsMemoryOptimized ? UpdateStatementMemoryOptimized : UpdateStatement;
+ return string.Format(CultureInfo.InvariantCulture, formatString,
+ AssociatedObjectMetadata.EscapedMultipartName, setClause, whereClause);
+ }
+
+ ///
+ /// Sets the value of the cell in the associated row. If is
+ /// identical to the original value, this will remove the cell update from the row update.
+ ///
+ /// Ordinal of the columns that will be set
+ /// String representation of the value the user input
+ ///
+ /// The string representation of the new value (after conversion to target object) if the
+ /// a change is made. null is returned if the cell is reverted to it's original value.
+ ///
+ public override EditUpdateCellResult SetCell(int columnId, string newValue)
+ {
+ // Validate the value and convert to object
+ ValidateColumnIsUpdatable(columnId);
+ CellUpdate update = new CellUpdate(AssociatedResultSet.Columns[columnId], newValue);
+
+ // If the value is the same as the old value, we shouldn't make changes
+ // NOTE: We must use .Equals in order to ignore object to object comparisons
+ if (update.Value.Equals(associatedRow[columnId].RawObject))
+ {
+ // Remove any pending change and stop processing this
+ if (cellUpdates.ContainsKey(columnId))
+ {
+ cellUpdates.Remove(columnId);
+ }
+ return new EditUpdateCellResult
+ {
+ HasCorrections = false,
+ NewValue = associatedRow[columnId].DisplayValue,
+ IsRevert = true,
+ IsNull = associatedRow[columnId].IsNull
+ };
+ }
+
+ // The change is real, so set it
+ cellUpdates[columnId] = update;
+ return new EditUpdateCellResult
+ {
+ HasCorrections = update.ValueAsString != newValue,
+ NewValue = update.ValueAsString != newValue ? update.ValueAsString : null,
+ IsNull = update.Value == DBNull.Value,
+ IsRevert = false // If we're in this branch, it is not a revert
+ };
+ }
+ }
+}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/HostLoader.cs b/src/Microsoft.SqlTools.ServiceLayer/HostLoader.cs
index 429e3732..cf65824e 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/HostLoader.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/HostLoader.cs
@@ -8,6 +8,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.SqlTools.ServiceLayer.Connection;
using Microsoft.SqlTools.ServiceLayer.Credentials;
+using Microsoft.SqlTools.ServiceLayer.EditData;
using Microsoft.SqlTools.ServiceLayer.Extensibility;
using Microsoft.SqlTools.ServiceLayer.Hosting;
using Microsoft.SqlTools.ServiceLayer.Hosting.Protocol;
@@ -75,6 +76,9 @@ namespace Microsoft.SqlTools.ServiceLayer
QueryExecutionService.Instance.InitializeService(serviceHost);
serviceProvider.RegisterSingleService(QueryExecutionService.Instance);
+ EditDataService.Instance.InitializeService(serviceHost);
+ serviceProvider.RegisterSingleService(EditDataService.Instance);
+
InitializeHostedServices(serviceProvider, serviceHost);
serviceHost.InitializeRequestHandlers();
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.Designer.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.Designer.cs
index d7cf2923..65569efd 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.Designer.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.Designer.cs
@@ -230,6 +230,15 @@ namespace Microsoft.SqlTools.ServiceLayer.Localization {
}
}
+ ///
+ /// Looks up a localized string similar to Specified URI '{0}' does not have a default connection.
+ ///
+ public static string ConnectionServiceDbErrorDefaultNotConnected {
+ get {
+ return ResourceManager.GetString("ConnectionServiceDbErrorDefaultNotConnected", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to SpecifiedUri '{0}' does not have existing connection.
///
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
index 3fe5880f..cd92d993 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.cs
@@ -485,6 +485,134 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
+ public static string EditDataSessionNotFound
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataSessionNotFound);
+ }
+ }
+
+ public static string EditDataQueryNotCompleted
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataQueryNotCompleted);
+ }
+ }
+
+ public static string EditDataQueryImproperResultSets
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataQueryImproperResultSets);
+ }
+ }
+
+ public static string EditDataFailedAddRow
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataFailedAddRow);
+ }
+ }
+
+ public static string EditDataRowOutOfRange
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataRowOutOfRange);
+ }
+ }
+
+ public static string EditDataUpdatePending
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataUpdatePending);
+ }
+ }
+
+ public static string EditDataUpdateNotPending
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataUpdateNotPending);
+ }
+ }
+
+ public static string EditDataObjectMetadataNotFound
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataObjectMetadataNotFound);
+ }
+ }
+
+ public static string EditDataInvalidFormatBinary
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataInvalidFormatBinary);
+ }
+ }
+
+ public static string EditDataInvalidFormatBoolean
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataInvalidFormatBoolean);
+ }
+ }
+
+ public static string EditDataCreateScriptMissingValue
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataCreateScriptMissingValue);
+ }
+ }
+
+ public static string EditDataDeleteSetCell
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataDeleteSetCell);
+ }
+ }
+
+ public static string EditDataColumnIdOutOfRange
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataColumnIdOutOfRange);
+ }
+ }
+
+ public static string EditDataColumnCannotBeEdited
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataColumnCannotBeEdited);
+ }
+ }
+
+ public static string EditDataColumnNoKeyColumns
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataColumnNoKeyColumns);
+ }
+ }
+
+ public static string EditDataScriptFilePathNull
+ {
+ get
+ {
+ return Keys.GetString(Keys.EditDataScriptFilePathNull);
+ }
+ }
+
public static string EE_BatchSqlMessageNoProcedureInfo
{
get
@@ -790,6 +918,11 @@ namespace Microsoft.SqlTools.ServiceLayer
return Keys.GetString(Keys.WorkspaceServiceBufferPositionOutOfOrder, sLine, sCol, eLine, eCol);
}
+ public static string EditDataUnsupportedObjectType(string typeName)
+ {
+ return Keys.GetString(Keys.EditDataUnsupportedObjectType, typeName);
+ }
+
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Keys
{
@@ -1008,6 +1141,57 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string WorkspaceServiceBufferPositionOutOfOrder = "WorkspaceServiceBufferPositionOutOfOrder";
+ public const string EditDataSessionNotFound = "EditDataSessionNotFound";
+
+
+ public const string EditDataUnsupportedObjectType = "EditDataUnsupportedObjectType";
+
+
+ public const string EditDataQueryNotCompleted = "EditDataQueryNotCompleted";
+
+
+ public const string EditDataQueryImproperResultSets = "EditDataQueryImproperResultSets";
+
+
+ public const string EditDataFailedAddRow = "EditDataFailedAddRow";
+
+
+ public const string EditDataRowOutOfRange = "EditDataRowOutOfRange";
+
+
+ public const string EditDataUpdatePending = "EditDataUpdatePending";
+
+
+ public const string EditDataUpdateNotPending = "EditDataUpdateNotPending";
+
+
+ public const string EditDataObjectMetadataNotFound = "EditDataObjectMetadataNotFound";
+
+
+ public const string EditDataInvalidFormatBinary = "EditDataInvalidFormatBinary";
+
+
+ public const string EditDataInvalidFormatBoolean = "EditDataInvalidFormatBoolean";
+
+
+ public const string EditDataCreateScriptMissingValue = "EditDataCreateScriptMissingValue";
+
+
+ public const string EditDataDeleteSetCell = "EditDataDeleteSetCell";
+
+
+ public const string EditDataColumnIdOutOfRange = "EditDataColumnIdOutOfRange";
+
+
+ public const string EditDataColumnCannotBeEdited = "EditDataColumnCannotBeEdited";
+
+
+ public const string EditDataColumnNoKeyColumns = "EditDataColumnNoKeyColumns";
+
+
+ public const string EditDataScriptFilePathNull = "EditDataScriptFilePathNull";
+
+
public const string EE_BatchSqlMessageNoProcedureInfo = "EE_BatchSqlMessageNoProcedureInfo";
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
index 3cdcb15a..551681e1 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.resx
@@ -410,6 +410,75 @@
.
Parameters: 0 - sLine (int), 1 - sCol (int), 2 - eLine (int), 3 - eCol (int)
+
+ Edit session does not exist.
+
+
+
+ Database object {0} cannot be used for editing.
+ .
+ Parameters: 0 - typeName (string)
+
+
+ Query has not completed execution
+
+
+
+ Query did not generate exactly one result set
+
+
+
+ Failed to add new row to update cache
+
+
+
+ Given row ID is outside the range of rows in the edit cache
+
+
+
+ An update is already pending for this row and must be reverted first
+
+
+
+ Given row ID does not have pending updated
+
+
+
+ Table or view metadata could not be found
+
+
+
+ Invalid format for binary column
+
+
+
+ Allowed values for boolean columns are 0, 1, "true", or "false"
+
+
+
+ A required cell value is missing
+
+
+
+ A delete is pending for this row, a cell update cannot be applied.
+
+
+
+ Column ID must be in the range of columns for the query
+
+
+
+ Column cannot be edited
+
+
+
+ No key columns were found
+
+
+
+ An output filename must be provided
+
+
Msg {0}, Level {1}, State {2}, Line {3}
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
index be49988a..f9c17744 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.strings
@@ -201,6 +201,43 @@ WorkspaceServicePositionColumnOutOfRange(int line) = Position is outside of colu
WorkspaceServiceBufferPositionOutOfOrder(int sLine, int sCol, int eLine, int eCol) = Start position ({0}, {1}) must come before or be equal to the end position ({2}, {3})
+############################################################################
+# Edit Data Service
+
+EditDataSessionNotFound = Edit session does not exist.
+
+EditDataUnsupportedObjectType(string typeName) = Database object {0} cannot be used for editing.
+
+EditDataQueryNotCompleted = Query has not completed execution
+
+EditDataQueryImproperResultSets = Query did not generate exactly one result set
+
+EditDataFailedAddRow = Failed to add new row to update cache
+
+EditDataRowOutOfRange = Given row ID is outside the range of rows in the edit cache
+
+EditDataUpdatePending = An update is already pending for this row and must be reverted first
+
+EditDataUpdateNotPending = Given row ID does not have pending updated
+
+EditDataObjectMetadataNotFound = Table or view metadata could not be found
+
+EditDataInvalidFormatBinary = Invalid format for binary column
+
+EditDataInvalidFormatBoolean = Allowed values for boolean columns are 0, 1, "true", or "false"
+
+EditDataCreateScriptMissingValue = A required cell value is missing
+
+EditDataDeleteSetCell = A delete is pending for this row, a cell update cannot be applied.
+
+EditDataColumnIdOutOfRange = Column ID must be in the range of columns for the query
+
+EditDataColumnCannotBeEdited = Column cannot be edited
+
+EditDataColumnNoKeyColumns = No key columns were found
+
+EditDataScriptFilePathNull = An output filename must be provided
+
############################################################################
# DacFx Resources
diff --git a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
index fdf394be..ea569eb8 100644
--- a/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
+++ b/src/Microsoft.SqlTools.ServiceLayer/Localization/sr.xlf
@@ -509,6 +509,92 @@
Replacement of an empty string by an empty string.
+
+ Edit session does not exist.
+ Edit session does not exist.
+
+
+
+ Query has not completed execution
+ Query has not completed execution
+
+
+
+ Query did not generate exactly one result set
+ Query did not generate exactly one result set
+
+
+
+ Failed to add new row to update cache
+ Failed to add new row to update cache
+
+
+
+ Given row ID is outside the range of rows in the edit cache
+ Given row ID is outside the range of rows in the edit cache
+
+
+
+ An update is already pending for this row and must be reverted first
+ An update is already pending for this row and must be reverted first
+
+
+
+ Given row ID does not have pending updated
+ Given row ID does not have pending updated
+
+
+
+ Table or view metadata could not be found
+ Table or view metadata could not be found
+
+
+
+ Invalid format for binary column
+ Invalid format for binary column
+
+
+
+ Allowed values for boolean columns are 0, 1, "true", or "false"
+ Boolean columns must be numeric 1 or 0, or string true or false
+
+
+
+ A required cell value is missing
+ A required cell value is missing
+
+
+
+ A delete is pending for this row, a cell update cannot be applied.
+ A delete is pending for this row, a cell update cannot be applied.
+
+
+
+ Column ID must be in the range of columns for the query
+ Column ID must be in the range of columns for the query
+
+
+
+ Column cannot be edited
+ Column cannot be edited
+
+
+
+ No key columns were found
+ No key columns were found
+
+
+
+ An output filename must be provided
+ An output filename must be provided
+
+
+
+ Database object {0} cannot be used for editing.
+ Database object {0} cannot be used for editing.
+ .
+ Parameters: 0 - typeName (string)
+