From 1b962143d3218792191e85d3a7c945bfcb448ae0 Mon Sep 17 00:00:00 2001 From: Iristyle Date: Fri, 12 Oct 2012 17:13:14 -0400 Subject: [PATCH] SQL 2008 Native Client 10.00.1600.22 --- .../SQL2008.NativeClient.nuspec | 23 +++++++++++++++++++ .../tools/chocolateyInstall.ps1 | 18 +++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 SQL2008.NativeClient/SQL2008.NativeClient.nuspec create mode 100644 SQL2008.NativeClient/tools/chocolateyInstall.ps1 diff --git a/SQL2008.NativeClient/SQL2008.NativeClient.nuspec b/SQL2008.NativeClient/SQL2008.NativeClient.nuspec new file mode 100644 index 0000000..03f61df --- /dev/null +++ b/SQL2008.NativeClient/SQL2008.NativeClient.nuspec @@ -0,0 +1,23 @@ + + + + SQL2008.NativeClient + Microsoft SQL Server 2008 Native Client + 10.00.1600.22 + Microsoft + Ethan Brown + Microsoft SQL Server 2008 Native Client (SQL Native Client) is a single dynamic-link library (DLL) containing both the SQL OLE DB provider and SQL ODBC driver. It contains run-time support for applications using native-code APIs (ODBC, OLE DB and ADO) to connect to Microsoft SQL Server 2000, 2005, or 2008. + Microsoft SQL Server 2008 Native Client (SQL Native Client) is a single dynamic-link library (DLL) containing both the SQL OLE DB provider and SQL ODBC driver. It contains run-time support for applications using native-code APIs (ODBC, OLE DB and ADO) to connect to Microsoft SQL Server 2000, 2005, or 2008. SQL Native Client should be used to create new applications or enhance existing applications that need to take advantage of new SQL Server 2008 features. This redistributable installer for SQL Native Client installs the client components needed during run time to take advantage of new SQL Server 2008 features, and optionally installs the header files needed to develop an application that uses the SQL Native Client API. + http://www.microsoft.com/en-us/download/details.aspx?id=16177 + SQL SQL2008 Native Client ODBC OLEDB + + false + https://github.com/Iristyle/ChocolateyPackages/raw/master/SQL2008.SMO/SQL2008.png + + + + + + diff --git a/SQL2008.NativeClient/tools/chocolateyInstall.ps1 b/SQL2008.NativeClient/tools/chocolateyInstall.ps1 new file mode 100644 index 0000000..f972536 --- /dev/null +++ b/SQL2008.NativeClient/tools/chocolateyInstall.ps1 @@ -0,0 +1,18 @@ +$package = 'SQL2008.NativeClient' + +try { + $params = @{ + packageName = $package; + fileType = 'msi'; + silentArgs = '/quiet'; + url = 'http://go.microsoft.com/fwlink/?LinkId=123717&clcid=0x409'; + url64bit = 'http://go.microsoft.com/fwlink/?LinkId=123718&clcid=0x409'; + } + + Install-ChocolateyPackage @params + + Write-ChocolateySuccess $package +} catch { + Write-ChocolateyFailure $package "$($_.Exception.Message)" + throw +}