mssql-python-odbc 18.6.2__py3-none-win_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mssql_python_odbc/__init__.py +42 -0
- mssql_python_odbc/libs/windows/arm64/1033/msodbcsqlr18.rll +0 -0
- mssql_python_odbc/libs/windows/arm64/MICROSOFT_ODBC_DRIVER_FOR_SQL_SERVER_LICENSE.txt +100 -0
- mssql_python_odbc/libs/windows/arm64/msodbcdiag18.dll +0 -0
- mssql_python_odbc/libs/windows/arm64/msodbcsql18.dll +0 -0
- mssql_python_odbc/libs/windows/arm64/mssql-auth.dll +0 -0
- mssql_python_odbc/libs/windows/arm64/vcredist/MICROSOFT_VISUAL_STUDIO_LICENSE.txt +54 -0
- mssql_python_odbc/libs/windows/arm64/vcredist/msvcp140.dll +0 -0
- mssql_python_odbc-18.6.2.dist-info/METADATA +27 -0
- mssql_python_odbc-18.6.2.dist-info/RECORD +13 -0
- mssql_python_odbc-18.6.2.dist-info/WHEEL +5 -0
- mssql_python_odbc-18.6.2.dist-info/licenses/LICENSE +47 -0
- mssql_python_odbc-18.6.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Copyright (c) Microsoft Corporation.
|
|
3
|
+
Licensed under the MIT license.
|
|
4
|
+
|
|
5
|
+
mssql_python_odbc — Microsoft ODBC Driver 18 for SQL Server binaries.
|
|
6
|
+
|
|
7
|
+
Internal implementation package for ``mssql-python``. It ships the
|
|
8
|
+
platform-specific ODBC driver binaries (``msodbcsql18``) and their supporting
|
|
9
|
+
libraries so that ``mssql-python`` does not have to bundle them in its own
|
|
10
|
+
wheel. It is not meant for direct consumption — install ``mssql-python``
|
|
11
|
+
instead, which depends on this package.
|
|
12
|
+
|
|
13
|
+
Driver-path resolution lives entirely in the native
|
|
14
|
+
``mssql_python.ddbc_bindings`` extension (``GetOdbcLibsBaseDir`` /
|
|
15
|
+
``GetDriverPathCpp``): it imports this package purely for its ``__file__`` and
|
|
16
|
+
appends ``libs/<platform>/<arch>/...`` itself. Keeping a single (C++) resolver
|
|
17
|
+
avoids a second copy of the arch/distro/filename logic that could silently
|
|
18
|
+
drift out of sync — see the drift guard in ``tests/test_000_dependencies.py``.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
import os
|
|
22
|
+
|
|
23
|
+
__all__ = ["get_libs_dir", "__version__"]
|
|
24
|
+
|
|
25
|
+
# Version tracks the bundled Microsoft ODBC Driver 18 for SQL Server release and
|
|
26
|
+
# is the single source of truth for the driver version. ``setup_odbc.py`` reads
|
|
27
|
+
# it for the wheel version, and the native build (``mssql_python/pybind/
|
|
28
|
+
# CMakeLists.txt``) derives the driver filename version from it and injects it
|
|
29
|
+
# into ``GetDriverPathCpp`` -- so the C++ resolver and this package can never
|
|
30
|
+
# drift. Bump this one value to move to a new driver release.
|
|
31
|
+
__version__ = "18.6.2"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def get_libs_dir() -> str:
|
|
35
|
+
"""Return the absolute path to this package's ``libs/`` directory.
|
|
36
|
+
|
|
37
|
+
This is the root under which the platform-specific ODBC binaries live
|
|
38
|
+
(``libs/<platform>/<arch>/...``). The parent of this path (the package
|
|
39
|
+
directory) is the base the native loader appends ``libs`` to when resolving
|
|
40
|
+
the driver.
|
|
41
|
+
"""
|
|
42
|
+
return os.path.join(os.path.dirname(os.path.abspath(__file__)), "libs")
|
|
Binary file
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
MICROSOFT SOFTWARE LICENSE TERMS
|
|
2
|
+
MICROSOFT ODBC DRIVER 18 FOR SQL SERVER
|
|
3
|
+
|
|
4
|
+
These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.
|
|
5
|
+
|
|
6
|
+
1. INSTALLATION AND USE RIGHTS.
|
|
7
|
+
|
|
8
|
+
a) General. You may install and use any number of copies of the software to develop and test your applications.
|
|
9
|
+
|
|
10
|
+
b) Third Party Software. The software may include third party applications that Microsoft, not the third party, licenses to you under this agreement. Any included notices for third party applications are for your information only.
|
|
11
|
+
|
|
12
|
+
2. DISTRIBUTABLE CODE. The software may contain code you are permitted to distribute (i.e. make available for third parties) in applications you develop, as described in this Section.
|
|
13
|
+
|
|
14
|
+
a) Distribution Rights. The code and test files described below are distributable if included with the software.
|
|
15
|
+
|
|
16
|
+
i. REDIST.TXT Files. You may copy and distribute the object code form of code listed on the REDIST list in the software, if any, or listed at REDIST (https://aka.ms/odbc18eularedist);
|
|
17
|
+
|
|
18
|
+
ii. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation;
|
|
19
|
+
|
|
20
|
+
iii. Sample Code, Templates, and Styles. You may copy, modify, and distribute the source and object code form of code marked as “sample”, “template”, “simple styles”, and “sketch styles”; and
|
|
21
|
+
|
|
22
|
+
iv. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
|
|
23
|
+
|
|
24
|
+
b) Distribution Requirements. For any code you distribute, you must:
|
|
25
|
+
|
|
26
|
+
i. add significant primary functionality to it in your applications;
|
|
27
|
+
|
|
28
|
+
ii. require distributors and external end users to agree to terms that protect it and Microsoft at least as much as this agreement; and
|
|
29
|
+
|
|
30
|
+
iii. indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the unmodified distributable code.
|
|
31
|
+
|
|
32
|
+
c) Distribution Restrictions. You may not:
|
|
33
|
+
|
|
34
|
+
i. use Microsoft’s trademarks or trade dress in your application in any way that suggests your application comes from or is endorsed by Microsoft; or
|
|
35
|
+
|
|
36
|
+
ii. modify or distribute the source code of any distributable code so that any part of it becomes subject to any license that requires that the distributable code, any other part of the software, or any of Microsoft’s other intellectual property be disclosed or distributed in source code form, or that others have the right to modify it.
|
|
37
|
+
|
|
38
|
+
3. DATA COLLECTION. Some features in the software may enable collection of data from users of your applications that access or use the software. If you use these features to enable data collection in your applications, you must comply with applicable law, including getting any required user consent, and maintain a prominent privacy policy that accurately informs users about how you use, collect, and share their data. You agree to comply with all applicable provisions of the Microsoft Privacy Statement at [https://go.microsoft.com/fwlink/?LinkId=521839].
|
|
39
|
+
|
|
40
|
+
4. SCOPE OF LICENSE. The software is licensed, not sold. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you will not (and have no right to):
|
|
41
|
+
|
|
42
|
+
a) work around any technical limitations in the software that only allow you to use it in certain ways;
|
|
43
|
+
|
|
44
|
+
b) reverse engineer, decompile or disassemble the software;
|
|
45
|
+
|
|
46
|
+
c) remove, minimize, block, or modify any notices of Microsoft or its suppliers in the software;
|
|
47
|
+
|
|
48
|
+
d) use the software in any way that is against the law or to create or propagate malware; or
|
|
49
|
+
|
|
50
|
+
e) share, publish, distribute, or lend the software (except for any distributable code, subject to the terms above), provide the software as a stand-alone hosted solution for others to use, or transfer the software or this agreement to any third party.
|
|
51
|
+
|
|
52
|
+
5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit http://aka.ms/exporting.
|
|
53
|
+
|
|
54
|
+
6. SUPPORT SERVICES. Microsoft is not obligated under this agreement to provide any support services for the software. Any support provided is “as is”, “with all faults”, and without warranty of any kind.
|
|
55
|
+
|
|
56
|
+
7. UPDATES. The software may periodically check for updates, and download and install them for you. You may obtain updates only from Microsoft or authorized sources. Microsoft may need to update your system to provide you with updates. You agree to receive these automatic updates without any additional notice. Updates may not include or support all existing software features, services, or peripheral devices.
|
|
57
|
+
|
|
58
|
+
8. ENTIRE AGREEMENT. This agreement, and any other terms Microsoft may provide for supplements, updates, or third-party applications, is the entire agreement for the software.
|
|
59
|
+
|
|
60
|
+
9. APPLICABLE LAW AND PLACE TO RESOLVE DISPUTES. If you acquired the software in the United States or Canada, the laws of the state or province where you live (or, if a business, where your principal place of business is located) govern the interpretation of this agreement, claims for its breach, and all other claims (including consumer protection, unfair competition, and tort claims), regardless of conflict of laws principles. If you acquired the software in any other country, its laws apply. If U.S. federal jurisdiction exists, you and Microsoft consent to exclusive jurisdiction and venue in the federal court in King County, Washington for all disputes heard in court. If not, you and Microsoft consent to exclusive jurisdiction and venue in the Superior Court of King County, Washington for all disputes heard in court.
|
|
61
|
+
|
|
62
|
+
10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:
|
|
63
|
+
|
|
64
|
+
a) Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.
|
|
65
|
+
|
|
66
|
+
b) Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.
|
|
67
|
+
|
|
68
|
+
c) Germany and Austria.
|
|
69
|
+
|
|
70
|
+
i. Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.
|
|
71
|
+
|
|
72
|
+
ii. Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.
|
|
73
|
+
|
|
74
|
+
Subject to the foregoing clause ii., Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.
|
|
75
|
+
|
|
76
|
+
11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES, OR CONDITIONS. TO THE EXTENT PERMITTED UNDER APPLICABLE LAWS, MICROSOFT EXCLUDES ALL IMPLIED WARRANTIES, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
|
|
77
|
+
|
|
78
|
+
12. LIMITATION ON AND EXCLUSION OF DAMAGES. IF YOU HAVE ANY BASIS FOR RECOVERING DAMAGES DESPITE THE PRECEDING DISCLAIMER OF WARRANTY, YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT, OR INCIDENTAL DAMAGES.
|
|
79
|
+
|
|
80
|
+
This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, warranty, guarantee, or condition; strict liability, negligence, or other tort; or any other claim; in each case to the extent permitted by applicable law.
|
|
81
|
+
|
|
82
|
+
It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state, province, or country may not allow the exclusion or limitation of incidental, consequential, or other damages.
|
|
83
|
+
|
|
84
|
+
Please note: As this software is distributed in Canada, some of the clauses in this agreement are provided below in French.
|
|
85
|
+
|
|
86
|
+
Remarque: Ce logiciel étant distribué au Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.
|
|
87
|
+
|
|
88
|
+
EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues.
|
|
89
|
+
|
|
90
|
+
LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.
|
|
91
|
+
|
|
92
|
+
Cette limitation concerne:
|
|
93
|
+
|
|
94
|
+
• tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers; et
|
|
95
|
+
|
|
96
|
+
• les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.
|
|
97
|
+
|
|
98
|
+
Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.
|
|
99
|
+
|
|
100
|
+
EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
MICROSOFT SOFTWARE LICENSE TERMS
|
|
2
|
+
MICROSOFT VISUAL STUDIO 2017 TOOLS, ADD-ONs and EXTENSIONS
|
|
3
|
+
|
|
4
|
+
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you.
|
|
5
|
+
They apply to the software named above. The terms also apply to any Microsoft services or updates for the
|
|
6
|
+
software, except to the extent those have different terms.
|
|
7
|
+
|
|
8
|
+
IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW.
|
|
9
|
+
|
|
10
|
+
1. INSTALLATION AND USE RIGHTS.
|
|
11
|
+
You may install and use any number of copies of the software.
|
|
12
|
+
|
|
13
|
+
2. TERMS FOR SPECIFIC COMPONENTS.
|
|
14
|
+
a. Utilities. The software may contain some items on the Utilities List at https://go.microsoft.com/fwlink/?linkid=823097. You may copy and install these Utilities, if included with the software, onto devices to debug and deploy your applications and databases you developed with the software. Please note that Utilities are designed for temporary use, that Microsoft may not be able to patch or update Utilities separately from the rest of the software, and that some Utilities by their nature may make it possible for others to access devices on which the Utilities are installed. As a result, you should delete all Utilities you have installed after you finish debugging or deploying your applications and databases. Microsoft is not responsible for any third party use or access of Utilities you install on any device.
|
|
15
|
+
b. Build Tools. The software may include build tools which have specific use terms. For build tools, you may copy and install files from the software onto your build devices, including physical devices and virtual machines or containers on those machines, whether on-premises or remote machines that are owned by you, hosted on Azure for you, or dedicated solely to your use (collectively, “Build Devices”). You and others in your organization may use these files on your Build Devices solely to compile, build, and verify applications or run quality or performance tests of those applications as part of the build process. For clarity, “applications” means applications developed by you and others in your organization who are each licensed to use the software.
|
|
16
|
+
c. Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft “Licenses” folder accompanying the software, except that, if license terms for those components are also included in the associated installation directory, those license terms control.
|
|
17
|
+
d. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.
|
|
18
|
+
|
|
19
|
+
3. DATA.
|
|
20
|
+
a. Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may opt-out of many of these scenarios, but not all, as described in the product documentation. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications and you should provide a copy of Microsoft’s privacy statement to your users. The Microsoft privacy statement is located here https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
|
|
21
|
+
b. Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at http://go.microsoft.com/?linkid=9840733.
|
|
22
|
+
|
|
23
|
+
4. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not
|
|
24
|
+
· work around any technical limitations in the software;
|
|
25
|
+
· reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software;
|
|
26
|
+
· remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;
|
|
27
|
+
· use the software in any way that is against the law; or
|
|
28
|
+
· share, publish, rent or lease the software, or provide the software as a stand-alone hosted as solution for others to use, or transfer the software or this agreement to any third party.
|
|
29
|
+
|
|
30
|
+
5. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.
|
|
31
|
+
|
|
32
|
+
6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.
|
|
33
|
+
|
|
34
|
+
7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
|
|
35
|
+
|
|
36
|
+
8. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.
|
|
37
|
+
|
|
38
|
+
9. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:
|
|
39
|
+
a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.
|
|
40
|
+
b. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.
|
|
41
|
+
c. Germany and Austria.
|
|
42
|
+
(i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software.
|
|
43
|
+
(ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law.
|
|
44
|
+
|
|
45
|
+
Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence.
|
|
46
|
+
|
|
47
|
+
10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
48
|
+
|
|
49
|
+
11. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
|
|
50
|
+
This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
|
|
51
|
+
|
|
52
|
+
It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
|
|
53
|
+
|
|
54
|
+
EULA ID: VS 2017_TOOLS_ADDONs_C++_RTW.3_ENU
|
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mssql-python-odbc
|
|
3
|
+
Version: 18.6.2
|
|
4
|
+
Summary: Internal implementation package for mssql-python: Microsoft ODBC Driver 18 for SQL Server binaries. Not intended for direct use.
|
|
5
|
+
Home-page: https://github.com/microsoft/mssql-python
|
|
6
|
+
Author: Microsoft Corporation
|
|
7
|
+
Author-email: mssql-python@microsoft.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
11
|
+
Classifier: Operating System :: MacOS
|
|
12
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/plain
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Dynamic: author
|
|
17
|
+
Dynamic: author-email
|
|
18
|
+
Dynamic: classifier
|
|
19
|
+
Dynamic: description
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: license
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
Dynamic: requires-python
|
|
25
|
+
Dynamic: summary
|
|
26
|
+
|
|
27
|
+
Internal implementation package not meant for direct consumption. Install `mssql-python`, which depends on this package.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
mssql_python_odbc/__init__.py,sha256=mnTQZvBJcr8j88IcTzDMiZjs6Z0Ne0o3nToPdz2oQlk,1923
|
|
2
|
+
mssql_python_odbc/libs/windows/arm64/MICROSOFT_ODBC_DRIVER_FOR_SQL_SERVER_LICENSE.txt,sha256=DqFL5iONsmD9ZqW1k2jl44Z2eSdA_iDW0RFiEf2Ep50,12273
|
|
3
|
+
mssql_python_odbc/libs/windows/arm64/msodbcdiag18.dll,sha256=6UzOIvtTViiIaj44fSXXNW0Srn6fX4a5T5ezlqVkzvE,112160
|
|
4
|
+
mssql_python_odbc/libs/windows/arm64/msodbcsql18.dll,sha256=FyFuHJix3Eiv2XeMT84fp-6vxJx0A9oM8DNbiRsA9VQ,3932704
|
|
5
|
+
mssql_python_odbc/libs/windows/arm64/mssql-auth.dll,sha256=LkQmJ4yvBjlhEeBgrPXeC5iFvvIPZKeC2r1uoWhOCeo,13548184
|
|
6
|
+
mssql_python_odbc/libs/windows/arm64/1033/msodbcsqlr18.rll,sha256=ZaEPThbuEYBSuigipxwWvICN7q0t6A5eC7KoSEiEaSs,201288
|
|
7
|
+
mssql_python_odbc/libs/windows/arm64/vcredist/MICROSOFT_VISUAL_STUDIO_LICENSE.txt,sha256=Hi1NP4qnI1oktujZTzrnr22PNPjwGljrILERpXhjPYQ,9678
|
|
8
|
+
mssql_python_odbc/libs/windows/arm64/vcredist/msvcp140.dll,sha256=Xxxd0xkWmQ2UGB4HvDr7Mr49tY8EO5-NZJ4kFYYvZr8,1387552
|
|
9
|
+
mssql_python_odbc-18.6.2.dist-info/licenses/LICENSE,sha256=tMWsxLSz13xS8IQOwtLLNnrtInvjvKds2j5xmJAVsZA,2694
|
|
10
|
+
mssql_python_odbc-18.6.2.dist-info/METADATA,sha256=8HHSZE0N6Psh-HImahEKKzoEgcR1rkZM36iyWQrijZY,971
|
|
11
|
+
mssql_python_odbc-18.6.2.dist-info/WHEEL,sha256=7p5VkX3z5OMy8JR5LmEJwjgGjqYEqLr-eMf5rGGwnq8,98
|
|
12
|
+
mssql_python_odbc-18.6.2.dist-info/top_level.txt,sha256=ahEBpiDwF-LduXChPduxcCAhVEIzjHsUNG2E-yxjZ5M,18
|
|
13
|
+
mssql_python_odbc-18.6.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
All files licensed under the MIT license except the dynamic-link libraries (DLLs) in the mssql_python\libs\win folder,
|
|
3
|
+
which are subject to different licensing terms. Please review the licensing details for each component below.
|
|
4
|
+
|
|
5
|
+
A. MIT License
|
|
6
|
+
==================================================================
|
|
7
|
+
Copyright (c) Microsoft Corporation.
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in all
|
|
17
|
+
copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
+
SOFTWARE
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
B. MICROSOFT LICENSES
|
|
29
|
+
==================================================================
|
|
30
|
+
The following dynamic-link libraries (DLLs) in the mssql_python\libs\win folder fall under different Microsoft licenses.
|
|
31
|
+
Below is a breakdown of these components by their respective licenses.
|
|
32
|
+
|
|
33
|
+
1. Microsoft ODBC Driver 18 End User License Agreement (EULA)
|
|
34
|
+
These components are part of the Microsoft ODBC Driver 18 for SQL Server and are governed by the Microsoft ODBC Driver 18 EULA.
|
|
35
|
+
|
|
36
|
+
- msodbcsqlr18.rll: Resource library containing localized error messages for the ODBC driver.
|
|
37
|
+
- msodbcdiag18.dll: Diagnostic library for handling error reporting and troubleshooting.
|
|
38
|
+
- msodbcsql18.dll: Core ODBC driver enabling connectivity between SQL Server and applications.
|
|
39
|
+
|
|
40
|
+
For official licensing terms, refer to: mssql_python\libs\win\MICROSOFT_ODBC_DRIVER_FOR_SQL_SERVER_LICENSE.txt
|
|
41
|
+
|
|
42
|
+
2. Microsoft Visual C++ Redistributable EULA
|
|
43
|
+
These components are part of the Microsoft Visual C++ Redistributable and are governed by the Microsoft Visual C++ Redistributable EULA.
|
|
44
|
+
|
|
45
|
+
- msvcp140.dll: Microsoft C++ Standard Library runtime, required for running C++ applications.
|
|
46
|
+
|
|
47
|
+
For redistribution and usage terms, refer to: mssql_python\libs\win\libs\win\MICROSOFT_VISUAL_STUDIO_LICENSE.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mssql_python_odbc
|