// // 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; namespace Microsoft.SqlTools.CoreServices.Connection { /// /// Interface for the SQL Connection factory /// public interface ISqlConnectionFactory { /// /// Create a new SQL Connection object /// DbConnection CreateSqlConnection(string connectionString); } }