Skip to content

Commit 41356ad

Browse files
Merge pull request #49 from microsoft/20221017_SQLCHECK_Issue48_UpdateSQLNativeClientSupportedState
SQLCHECK Issue#48 - Update to SQL native client supportability
2 parents 8f3f390 + 41e880e commit 41356ad

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

SQLCheck/SQLCheck/DriverInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,13 @@ public static DriverInfo GetDriverInfo(string driverName, FileVersionInfo versio
169169
case "SQLOLEDB": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "Deprecated", "No");
170170
case "SQLNCLI": return new DriverInfo(driverName, "OLE DB", "No", "No", "SQL 7.0 - SQL 2019", "No", "No");
171171
case "SQLNCLI10": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "No");
172-
case "SQLNCLI11": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "Yes", "No");
172+
case "SQLNCLI11": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "No");
173173
case "MSOLEDBSQL": return new DriverInfo(driverName, "OLE DB", "Yes", "No", "SQL 2005 - SQL 2019", "Yes", "Yes");
174174
case "MSOLEDBSQL19": return new DriverInfo(driverName, "OLE DB", "Yes", TLS13, "SQL 2005 - SQL 2022", "Yes", "Yes");
175175
case "SQL Server": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "Deprecated", "No");
176176
case "SQL Server Native Client 9.0": return new DriverInfo(driverName, "ODBC", "No", "No", "SQL 7.0 - SQL 2019", "No", "No");
177177
case "SQL Server Native Client 10.0": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "No");
178-
case "SQL Server Native Client 11.0": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "Yes", "Yes");
178+
case "SQL Server Native Client 11.0": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "Yes");
179179
case "ODBC Driver 11 for SQL Server": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "Yes", "Yes");
180180
case "ODBC Driver 13 for SQL Server": return new DriverInfo(driverName, "ODBC", "Yes", "No", "SQL 7.0 - SQL 2019", "Yes", "Yes");
181181
case "ODBC Driver 17 for SQL Server": return new DriverInfo(driverName, "ODBC", "Yes", "No", "SQL 2005 - SQL 2019", "Yes", "Yes");

SQLCheck/SQLCheck/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.1245.0")]
36-
[assembly: AssemblyFileVersion("1.0.1245.0")]
35+
[assembly: AssemblyVersion("1.0.1246.0")]
36+
[assembly: AssemblyFileVersion("1.0.1246.0")]

SQLCheck/SQLCheck/SQLCheck.csproj

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,21 @@
1111
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<Deterministic>true</Deterministic>
14+
<PublishUrl>publish\</PublishUrl>
15+
<Install>true</Install>
16+
<InstallFrom>Disk</InstallFrom>
17+
<UpdateEnabled>false</UpdateEnabled>
18+
<UpdateMode>Foreground</UpdateMode>
19+
<UpdateInterval>7</UpdateInterval>
20+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
21+
<UpdatePeriodically>false</UpdatePeriodically>
22+
<UpdateRequired>false</UpdateRequired>
23+
<MapFileExtensions>true</MapFileExtensions>
24+
<ApplicationRevision>0</ApplicationRevision>
25+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
26+
<IsWebBootstrapper>false</IsWebBootstrapper>
27+
<UseApplicationTrust>false</UseApplicationTrust>
28+
<BootstrapperEnabled>true</BootstrapperEnabled>
1429
</PropertyGroup>
1530
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1631
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -82,5 +97,12 @@
8297
<DesignTimeSharedInput>True</DesignTimeSharedInput>
8398
</Compile>
8499
</ItemGroup>
100+
<ItemGroup>
101+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
102+
<Visible>False</Visible>
103+
<ProductName>.NET Framework 3.5 SP1</ProductName>
104+
<Install>false</Install>
105+
</BootstrapperPackage>
106+
</ItemGroup>
85107
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
86108
</Project>

0 commit comments

Comments
 (0)