mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
Feature/autocomp options (#63)
* Enable IntelliSense settings * Fix up some bugs in the IntelliSense settings. * Code cleans for PR * Fix a couple exceptions that are breaks query execute and intellisense. * Add useLowerCase flag and settings tests
This commit is contained in:
@@ -160,6 +160,11 @@ namespace Microsoft.SqlTools.ServiceLayer.Connection
|
||||
|
||||
// create a sql connection instance
|
||||
connectionInfo.SqlConnection = connectionInfo.Factory.CreateSqlConnection(connectionString);
|
||||
|
||||
// turning on MARS to avoid break in LanguageService with multiple editors
|
||||
// we'll remove this once ConnectionService is refactored to not own the LanguageService connection
|
||||
connectionInfo.ConnectionDetails.MultipleActiveResultSets = true;
|
||||
|
||||
connectionInfo.SqlConnection.Open();
|
||||
}
|
||||
catch (SqlException ex)
|
||||
|
||||
Reference in New Issue
Block a user