hdbcli 2.25.22__cp38-abi3-musllinux_1_2_x86_64.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.
Potentially problematic release.
This version of hdbcli might be problematic. Click here for more details.
- hdbcli/__init__.py +12 -0
- hdbcli/dbapi.py +127 -0
- hdbcli/resultrow.py +2 -0
- hdbcli-2.25.22.dist-info/METADATA +153 -0
- hdbcli-2.25.22.dist-info/RECORD +9 -0
- hdbcli-2.25.22.dist-info/WHEEL +5 -0
- hdbcli-2.25.22.dist-info/licenses/LICENSE +39 -0
- hdbcli-2.25.22.dist-info/top_level.txt +2 -0
- pyhdbcli.abi3.so +0 -0
hdbcli/__init__.py
ADDED
hdbcli/dbapi.py
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import time
|
|
2
|
+
import datetime
|
|
3
|
+
import decimal
|
|
4
|
+
import sys
|
|
5
|
+
import pyhdbcli
|
|
6
|
+
|
|
7
|
+
if sys.version_info >= (3,):
|
|
8
|
+
long = int
|
|
9
|
+
buffer = memoryview
|
|
10
|
+
unicode = str
|
|
11
|
+
|
|
12
|
+
#
|
|
13
|
+
# globals
|
|
14
|
+
#
|
|
15
|
+
apilevel = '2.0'
|
|
16
|
+
threadsafety = 1
|
|
17
|
+
paramstyle = ('qmark', 'named')
|
|
18
|
+
|
|
19
|
+
Connection = pyhdbcli.Connection
|
|
20
|
+
LOB = pyhdbcli.LOB
|
|
21
|
+
ResultRow = pyhdbcli.ResultRow
|
|
22
|
+
connect = Connection
|
|
23
|
+
Cursor = pyhdbcli.Cursor
|
|
24
|
+
|
|
25
|
+
#
|
|
26
|
+
# exceptions
|
|
27
|
+
#
|
|
28
|
+
from pyhdbcli import Warning
|
|
29
|
+
from pyhdbcli import Error
|
|
30
|
+
def __errorinit(self, *args):
|
|
31
|
+
super(Error, self).__init__(*args)
|
|
32
|
+
argc = len(args)
|
|
33
|
+
if argc == 1:
|
|
34
|
+
if isinstance(args[0], Error):
|
|
35
|
+
self.errorcode = args[0].errorcode
|
|
36
|
+
self.errortext = args[0].errortext
|
|
37
|
+
elif isinstance(args[0], (str, unicode)):
|
|
38
|
+
self.errorcode = 0
|
|
39
|
+
self.errortext = args[0]
|
|
40
|
+
elif argc >= 2 and isinstance(args[0], (int, long)) and isinstance(args[1], (str, unicode)):
|
|
41
|
+
self.errorcode = args[0]
|
|
42
|
+
self.errortext = args[1]
|
|
43
|
+
Error.__init__ = __errorinit
|
|
44
|
+
from pyhdbcli import DatabaseError
|
|
45
|
+
from pyhdbcli import OperationalError
|
|
46
|
+
from pyhdbcli import ProgrammingError
|
|
47
|
+
from pyhdbcli import IntegrityError
|
|
48
|
+
from pyhdbcli import InterfaceError
|
|
49
|
+
from pyhdbcli import InternalError
|
|
50
|
+
from pyhdbcli import DataError
|
|
51
|
+
from pyhdbcli import NotSupportedError
|
|
52
|
+
from pyhdbcli import ExecuteManyError
|
|
53
|
+
from pyhdbcli import ExecuteManyErrorEntry
|
|
54
|
+
|
|
55
|
+
#
|
|
56
|
+
# input conversions
|
|
57
|
+
#
|
|
58
|
+
|
|
59
|
+
def Date(year, month, day):
|
|
60
|
+
return datetime.date(year, month, day)
|
|
61
|
+
|
|
62
|
+
def Time(hour, minute, second, millisecond = 0):
|
|
63
|
+
return datetime.time(hour, minute, second, millisecond * 1000)
|
|
64
|
+
|
|
65
|
+
def Timestamp(year, month, day, hour, minute, second, millisecond = 0):
|
|
66
|
+
return datetime.datetime(year, month, day, hour, minute, second, millisecond * 1000)
|
|
67
|
+
|
|
68
|
+
def DateFromTicks(ticks):
|
|
69
|
+
localtime = time.localtime(ticks)
|
|
70
|
+
year = localtime[0]
|
|
71
|
+
month = localtime[1]
|
|
72
|
+
day = localtime[2]
|
|
73
|
+
return Date(year, month, day)
|
|
74
|
+
|
|
75
|
+
def TimeFromTicks(ticks):
|
|
76
|
+
localtime = time.localtime(ticks)
|
|
77
|
+
hour = localtime[3]
|
|
78
|
+
minute = localtime[4]
|
|
79
|
+
second = localtime[5]
|
|
80
|
+
return Time(hour, minute, second)
|
|
81
|
+
|
|
82
|
+
def TimestampFromTicks(ticks):
|
|
83
|
+
localtime = time.localtime(ticks)
|
|
84
|
+
year = localtime[0]
|
|
85
|
+
month = localtime[1]
|
|
86
|
+
day = localtime[2]
|
|
87
|
+
hour = localtime[3]
|
|
88
|
+
minute = localtime[4]
|
|
89
|
+
second = localtime[5]
|
|
90
|
+
return Timestamp(year, month, day, hour, minute, second)
|
|
91
|
+
|
|
92
|
+
def Binary(data):
|
|
93
|
+
return buffer(data)
|
|
94
|
+
|
|
95
|
+
#
|
|
96
|
+
# Decimal
|
|
97
|
+
#
|
|
98
|
+
Decimal = decimal.Decimal
|
|
99
|
+
|
|
100
|
+
#
|
|
101
|
+
# type objects
|
|
102
|
+
#
|
|
103
|
+
class _AbstractType:
|
|
104
|
+
def __init__(self, name, typeobjects):
|
|
105
|
+
self.name = name
|
|
106
|
+
self.typeobjects = typeobjects
|
|
107
|
+
|
|
108
|
+
def __str__(self):
|
|
109
|
+
return self.name
|
|
110
|
+
|
|
111
|
+
def __cmp__(self, other):
|
|
112
|
+
if other in self.typeobjects:
|
|
113
|
+
return 0
|
|
114
|
+
else:
|
|
115
|
+
return -1
|
|
116
|
+
|
|
117
|
+
def __eq__(self, other):
|
|
118
|
+
return (other in self.typeobjects)
|
|
119
|
+
|
|
120
|
+
def __hash__(self):
|
|
121
|
+
return hash(self.name)
|
|
122
|
+
|
|
123
|
+
NUMBER = _AbstractType('NUMBER', (int, long, float, complex))
|
|
124
|
+
DATETIME = _AbstractType('DATETIME', (type(datetime.time(0)), type(datetime.date(1,1,1)), type(datetime.datetime(1,1,1))))
|
|
125
|
+
STRING = str
|
|
126
|
+
BINARY = buffer
|
|
127
|
+
ROWID = int
|
hdbcli/resultrow.py
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hdbcli
|
|
3
|
+
Version: 2.25.22
|
|
4
|
+
Summary: SAP HANA Python Client
|
|
5
|
+
Home-page: https://www.sap.com/
|
|
6
|
+
Author: SAP SE
|
|
7
|
+
License: SAP DEVELOPER LICENSE AGREEMENT
|
|
8
|
+
Project-URL: Documentation, https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/f3b8fabf34324302b123297cdbe710f0.html
|
|
9
|
+
Keywords: SAP HANA client in-memory database SQL cloud business application intelligent enterprise AI artificial intelligence analytics experience
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
13
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
14
|
+
Classifier: Intended Audience :: Healthcare Industry
|
|
15
|
+
Classifier: Intended Audience :: Information Technology
|
|
16
|
+
Classifier: Intended Audience :: Legal Industry
|
|
17
|
+
Classifier: Intended Audience :: Manufacturing
|
|
18
|
+
Classifier: Intended Audience :: Science/Research
|
|
19
|
+
Classifier: License :: Other/Proprietary License
|
|
20
|
+
Classifier: Operating System :: MacOS
|
|
21
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
|
+
Classifier: Operating System :: Microsoft :: Windows :: Windows 11
|
|
23
|
+
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
|
|
24
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
25
|
+
Classifier: Programming Language :: Python
|
|
26
|
+
Classifier: Programming Language :: Python :: 3
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
29
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
30
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
31
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
32
|
+
Classifier: Topic :: Database
|
|
33
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
34
|
+
Description-Content-Type: text/x-rst
|
|
35
|
+
License-File: LICENSE
|
|
36
|
+
Dynamic: author
|
|
37
|
+
Dynamic: classifier
|
|
38
|
+
Dynamic: description
|
|
39
|
+
Dynamic: description-content-type
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: keywords
|
|
42
|
+
Dynamic: license
|
|
43
|
+
Dynamic: license-file
|
|
44
|
+
Dynamic: project-url
|
|
45
|
+
Dynamic: summary
|
|
46
|
+
|
|
47
|
+
######################
|
|
48
|
+
SAP HANA Python Client
|
|
49
|
+
######################
|
|
50
|
+
|
|
51
|
+
Introduction
|
|
52
|
+
------------
|
|
53
|
+
|
|
54
|
+
The Python Database API Specification v2.0 (PEP 249) defines a set of methods that provides a consistent database interface independent of the actual database being used. The Python extension module for SAP HANA implements PEP 249. Once you install the module, you can access and change the information in SAP HANA databases from Python.
|
|
55
|
+
|
|
56
|
+
In PEP 249, autocommit is turned off by default. In the SAP HANA Python driver, autocommit is turned on by default.
|
|
57
|
+
|
|
58
|
+
For information, see: `PEP 249 -- Python Database API Specification v2.0 <https://www.python.org/dev/peps/pep-0249/>`_
|
|
59
|
+
|
|
60
|
+
Getting Started
|
|
61
|
+
---------------
|
|
62
|
+
|
|
63
|
+
Install via ``pip install hdbcli`` or install manually via the `HANA Client Install <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/39eca89d94ca464ca52385ad50fc7dea.html>`_
|
|
64
|
+
|
|
65
|
+
Quick Start
|
|
66
|
+
-----------
|
|
67
|
+
|
|
68
|
+
* For HANA Cloud databases, the port number is 443 and encryption is always enabled by default
|
|
69
|
+
* For HANA tenant databases, use the port number 3**NN**13 (where **NN** is the SAP instance number - e.g. 30013).
|
|
70
|
+
* For HANA system databases in a multitenant system, the port number is 3**NN**13.
|
|
71
|
+
* For HANA single-tenant databases, the port number is 3**NN**15.
|
|
72
|
+
|
|
73
|
+
::
|
|
74
|
+
|
|
75
|
+
from hdbcli import dbapi
|
|
76
|
+
conn = dbapi.connect(
|
|
77
|
+
address="<hostname>",
|
|
78
|
+
port=3<NN>MM,
|
|
79
|
+
user="<username>",
|
|
80
|
+
password="<password>"
|
|
81
|
+
)
|
|
82
|
+
cursor = conn.cursor()
|
|
83
|
+
|
|
84
|
+
Execute a single statement that does not return a result set:
|
|
85
|
+
|
|
86
|
+
::
|
|
87
|
+
|
|
88
|
+
cursor.execute("CREATE TABLE T1 (ID INTEGER PRIMARY KEY, C2 VARCHAR(255))")
|
|
89
|
+
cursor.close()
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
Use question mark parameter binding to insert values into the T1 table created above. The parameter values are supplied as a Python sequence and can be literal values or variable names. This example uses literal values:
|
|
93
|
+
|
|
94
|
+
::
|
|
95
|
+
|
|
96
|
+
sql = 'INSERT INTO T1 (ID, C2) VALUES (?, ?)'
|
|
97
|
+
cursor = conn.cursor()
|
|
98
|
+
cursor.execute(sql, (1, 'hello'))
|
|
99
|
+
# returns True
|
|
100
|
+
cursor.execute(sql, (2, 'hello again'))
|
|
101
|
+
# returns True
|
|
102
|
+
cursor.close()
|
|
103
|
+
|
|
104
|
+
Use named parameter binding to insert values into the T1 table. The values are supplied as a Python dictionary, and this example uses variable names.
|
|
105
|
+
|
|
106
|
+
::
|
|
107
|
+
|
|
108
|
+
sql = 'INSERT INTO T1 (ID, C2) VALUES (:id, :c2)'
|
|
109
|
+
cursor = conn.cursor()
|
|
110
|
+
id = 3
|
|
111
|
+
c2 = "goodbye"
|
|
112
|
+
cursor.execute(sql, {"id": id, "c2": c2})
|
|
113
|
+
# returns True
|
|
114
|
+
cursor.close()
|
|
115
|
+
|
|
116
|
+
Loop over the rows of the result set.
|
|
117
|
+
|
|
118
|
+
::
|
|
119
|
+
|
|
120
|
+
sql = 'SELECT * FROM T1'
|
|
121
|
+
cursor = conn.cursor()
|
|
122
|
+
cursor.execute(sql)
|
|
123
|
+
for row in cursor:
|
|
124
|
+
print(row)
|
|
125
|
+
|
|
126
|
+
Help
|
|
127
|
+
----
|
|
128
|
+
|
|
129
|
+
See the `SAP HANA Client Interface Programming Reference <https://help.sap.com/viewer/f1b440ded6144a54ada97ff95dac7adf/latest/en-US/f3b8fabf34324302b123297cdbe710f0.html>`_ for details about developing with the SAP HANA Python Client.
|
|
130
|
+
|
|
131
|
+
Community
|
|
132
|
+
---------
|
|
133
|
+
|
|
134
|
+
SAP Community provides a forum where you can ask and answer questions, and comment and vote on the questions of others and their answers.
|
|
135
|
+
|
|
136
|
+
See `SAP HANA Community Questions <https://answers.sap.com/tags/73554900100700000996>`_ for details.
|
|
137
|
+
|
|
138
|
+
Limitations of 32-bit Windows driver
|
|
139
|
+
------------------------------------
|
|
140
|
+
|
|
141
|
+
The maximum length of a LOB column for the 32-bit Python driver on Windows is 2147483647.
|
|
142
|
+
The maximum rowcount that can be returned for the 32-bit Python driver on Windows is 2147483647.
|
|
143
|
+
|
|
144
|
+
License
|
|
145
|
+
-------
|
|
146
|
+
|
|
147
|
+
The HANA Python Client is provided via the `SAP Developer License Agreement <https://tools.hana.ondemand.com/developer-license.txt>`_.
|
|
148
|
+
|
|
149
|
+
By using this software, you agree that the following text is incorporated into the terms of the Developer Agreement:
|
|
150
|
+
|
|
151
|
+
If you are an existing SAP customer for On Premise software, your use of this current software is also covered by the
|
|
152
|
+
terms of your software license agreement with SAP, including the Use Rights, the current version of which can be found at:
|
|
153
|
+
`https://www.sap.com/about/agreements/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights <https://www.sap.com/about/agreements/product-use-and-support-terms.html?tag=agreements:product-use-support-terms/on-premise-software/software-use-rights>`_
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
pyhdbcli.abi3.so,sha256=7IriB-yW_w4lizTVLoYRb6yYC3-J2b4bL6nB40cSRIQ,13966016
|
|
2
|
+
hdbcli/__init__.py,sha256=rBV2EQh0TB2x65hbhfDJNCJcWBXKEOz7AHqso5AKn34,151
|
|
3
|
+
hdbcli/dbapi.py,sha256=jdRxlVKCeOeVCZ8xiPDWOUCWqQTKKLi7viPo8pg0P54,3130
|
|
4
|
+
hdbcli/resultrow.py,sha256=VDVuTB4e_dr9I6rMh11BvHdf4oXBWW29C5lRRfDsC0w,47
|
|
5
|
+
hdbcli-2.25.22.dist-info/licenses/LICENSE,sha256=we0Rtl2sV2nLJ7uQYb8WyohHGd5GPSH2C0AmTbW6xnM,13530
|
|
6
|
+
hdbcli-2.25.22.dist-info/METADATA,sha256=si4R_E8PQ66Thzbq-kY-LAWkoV3NxC9PhP_0fZAeSrc,6191
|
|
7
|
+
hdbcli-2.25.22.dist-info/WHEEL,sha256=nYXz2ExObTVjNXvR7MZf6KsbqhlMfPc-_1FeuiNekTA,110
|
|
8
|
+
hdbcli-2.25.22.dist-info/top_level.txt,sha256=8LbnTZeduoYdRMjEGsfW-zEnFYceyInSnjZftZDOZuw,16
|
|
9
|
+
hdbcli-2.25.22.dist-info/RECORD,,
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
SAP DEVELOPER LICENSE AGREEMENT
|
|
2
|
+
|
|
3
|
+
Version 3.2
|
|
4
|
+
|
|
5
|
+
Please scroll down and read the following Developer License Agreement carefully ("Developer Agreement"). By clicking "I Accept" or by attempting to download, or install, or use the SAP software and other materials that accompany this Developer Agreement ("SAP Materials"), You agree that this Developer Agreement forms a legally binding agreement between You ("You" or "Your") and SAP SE, for and on behalf of itself and its subsidiaries and affiliates (as defined in Section 15 of the German Stock Corporation Act) and You agree to be bound by all of the terms and conditions stated in this Developer Agreement. If You are trying to access or download the SAP Materials on behalf of Your employer or as a consultant or agent of a third party (either "Your Company"), You represent and warrant that You have the authority to act on behalf of and bind Your Company to the terms of this Developer Agreement and everywhere in this Developer Agreement that refers to 'You' or 'Your' shall also include Your Company. If You do not agree to these terms, do not click "I Accept", and do not attempt to access or use the SAP Materials.
|
|
6
|
+
|
|
7
|
+
1. LICENSE: SAP grants You a non-exclusive, non-transferable, non-sublicensable, revocable, limited use license to copy, reproduce and distribute the application programming interfaces ("API"), documentation, plug-ins, templates, scripts and sample code ("Tools") on a desktop, laptop, tablet, smart phone, or other appropriate computer device that You own or control (any, a "Computer") to create new applications ("Customer Applications"). You agree that the Customer Applications will not: (a) unreasonably impair, degrade or reduce the performance or security of any SAP software applications, services or related technology ("Software"); (b) enable the bypassing or circumventing of SAP's license restrictions and/or provide users with access to the Software to which such users are not licensed; (c) render or provide, without prior written consent from SAP, any information concerning SAP software license terms, Software, or any other information related to SAP products; or (d) permit mass data extraction from an SAP product to a non-SAP product, including use, modification, saving or other processing of such data in the non-SAP product. In exchange for the right to develop Customer Applications under this Agreement, You covenant not to assert any Intellectual Property Rights in Customer Applications created by You against any SAP product, service, or future SAP development.
|
|
8
|
+
|
|
9
|
+
2. INTELLECTUAL PROPERTY: (a) SAP or its licensors retain all ownership and intellectual property rights in the APIs, Tools and Software. You may not: a) remove or modify any marks or proprietary notices of SAP, b) provide or make the APIs, Tools or Software available to any third party, c) assign this Developer Agreement or give or transfer the APIs, Tools or Software or an interest in them to another individual or entity, d) decompile, disassemble or reverse engineer (except to the extent permitted by applicable law) the APIs Tools or Software, (e) create derivative works of or based on the APIs, Tools or Software, (f) use any SAP name, trademark or logo, or (g) use the APIs or Tools to modify existing Software or other SAP product functionality or to access the Software or other SAP products' source code or metadata.
|
|
10
|
+
(b) Subject to SAP's underlying rights in any part of the APIs, Tools or Software, You retain all ownership and intellectual property rights in Your Customer Applications.
|
|
11
|
+
|
|
12
|
+
3. ARTIFICIAL INTELLIGENCE TRAINING: You are expressly prohibited from using the Software, Tools or APIs as well as any Customer Applications or any part thereof for the purpose of training (developing) artificial intelligence models or systems (“AI Training”). Prohibition of AI Training includes, but is not limited to, using the Software, Tools, APIs and/or Customer Applications or part thereof in any training data set, algorithm development, model development or refinement (including language learning models) related to artificial intelligence, as well as text and data mining in accordance with §44b UrhG and Art. 4 of EU Directive 2019/790. For the avoidance of doubt, by accepting this Developer Agreement You agree that Your ownership of Customer Applications shall not create nor encompass any right to use Customer Applications for AI Training and, hence, You will not use Customer Applications or any part of it for AI Training.
|
|
13
|
+
|
|
14
|
+
4. FREE AND OPEN SOURCE COMPONENTS: The SAP Materials may include certain third party free or open source components ("FOSS Components"). You may have additional rights in such FOSS Components that are provided by the third party licensors of those components.
|
|
15
|
+
|
|
16
|
+
5. THIRD PARTY DEPENDENCIES: The SAP Materials may require certain third party software dependencies ("Dependencies") for the use or operation of such SAP Materials. These dependencies may be identified by SAP in Maven POM files, product documentation or by other means. SAP does not grant You any rights in or to such Dependencies under this Developer Agreement. You are solely responsible for the acquisition, installation and use of Dependencies. SAP DOES NOT MAKE ANY REPRESENTATIONS OR WARRANTIES IN RESPECT OF DEPENDENCIES, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND OF FITNESS FOR A PARTICULAR PURPOSE. IN PARTICULAR, SAP DOES NOT WARRANT THAT DEPENDENCIES WILL BE AVAILABLE, ERROR FREE, INTEROPERABLE WITH THE SAP MATERIALS, SUITABLE FOR ANY PARTICULAR PURPOSE OR NON-INFRINGING. YOU ASSUME ALL RISKS ASSOCIATED WITH THE USE OF DEPENDENCIES, INCLUDING WITHOUT LIMITATION RISKS RELATING TO QUALITY, AVAILABILITY, PERFORMANCE, DATA LOSS, UTILITY IN A PRODUCTION ENVIRONMENT, AND NON-INFRINGEMENT. IN NO EVENT WILL SAP BE LIABLE DIRECTLY OR INDIRECTLY IN RESPECT OF ANY USE OF DEPENDENCIES BY YOU.
|
|
17
|
+
|
|
18
|
+
6. WARRANTY:
|
|
19
|
+
a) If You are located outside the US or Canada: AS THE API AND TOOLS ARE PROVIDED TO YOU FREE OF CHARGE, SAP DOES NOT GUARANTEE OR WARRANT ANY FEATURES OR QUALITIES OF THE TOOLS OR API OR GIVE ANY UNDERTAKING WITH REGARD TO ANY OTHER QUALITY. NO SUCH WARRANTY OR UNDERTAKING SHALL BE IMPLIED BY YOU FROM ANY DESCRIPTION IN THE API OR TOOLS OR ANY AVAILABLE DOCUMENTATION OR ANY OTHER COMMUNICATION OR ADVERTISEMENT. IN PARTICULAR, SAP DOES NOT WARRANT THAT THE SOFTWARE WILL BE AVAILABLE UNINTERRUPTED, ERROR FREE, OR PERMANENTLY AVAILABLE. FOR THE TOOLS AND API ALL WARRANTY CLAIMS ARE SUBJECT TO THE LIMITATION OF LIABILITY STIPULATED IN SECTION 4 BELOW.
|
|
20
|
+
b) If You are located in the US or Canada: THE API AND TOOLS ARE LICENSED TO YOU "AS IS", WITHOUT ANY WARRANTY, ESCROW, TRAINING, MAINTENANCE, OR SERVICE OBLIGATIONS WHATSOEVER ON THE PART OF SAP. SAP MAKES NO EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OF SALE OF ANY TYPE WHATSOEVER, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND OF FITNESS FOR A PARTICULAR PURPOSE. IN PARTICULAR, SAP DOES NOT WARRANT THAT THE SOFTWARE WILL BE AVAILABLE UNINTERRUPTED, ERROR FREE, OR PERMANENTLY AVAILABLE. YOU ASSUME ALL RISKS ASSOCIATED WITH THE USE OF THE API AND TOOLS, INCLUDING WITHOUT LIMITATION RISKS RELATING TO QUALITY, AVAILABILITY, PERFORMANCE, DATA LOSS, AND UTILITY IN A PRODUCTION ENVIRONMENT.
|
|
21
|
+
|
|
22
|
+
7. LIMITATION OF LIABILITY:
|
|
23
|
+
a) If You are located outside the US or Canada: IRRESPECTIVE OF THE LEGAL REASONS, SAP SHALL ONLY BE LIABLE FOR DAMAGES UNDER THIS AGREEMENT IF SUCH DAMAGE (I) CAN BE CLAIMED UNDER THE GERMAN PRODUCT LIABILITY ACT OR (II) IS CAUSED BY INTENTIONAL MISCONDUCT OF SAP OR (III) CONSISTS OF PERSONAL INJURY. IN ALL OTHER CASES, NEITHER SAP NOR ITS EMPLOYEES, AGENTS AND SUBCONTRACTORS SHALL BE LIABLE FOR ANY KIND OF DAMAGE OR CLAIMS HEREUNDER.
|
|
24
|
+
b) If You are located in the US or Canada: IN NO EVENT SHALL SAP BE LIABLE TO YOU, YOUR COMPANY OR TO ANY THIRD PARTY FOR ANY DAMAGES IN AN AMOUNT IN EXCESS OF $100 ARISING IN CONNECTION WITH YOUR USE OF OR INABILITY TO USE THE TOOLS OR API OR IN CONNECTION WITH SAP'S PROVISION OF OR FAILURE TO PROVIDE SERVICES PERTAINING TO THE TOOLS OR API, OR AS A RESULT OF ANY DEFECT IN THE API OR TOOLS. THIS DISCLAIMER OF LIABILITY SHALL APPLY REGARDLESS OF THE FORM OF ACTION THAT MAY BE BROUGHT AGAINST SAP, WHETHER IN CONTRACT OR TORT, INCLUDING WITHOUT LIMITATION ANY ACTION FOR NEGLIGENCE. YOUR SOLE REMEDY IN THE EVENT OF BREACH OF THIS DEVELOPER AGREEMENT BY SAP OR FOR ANY OTHER CLAIM RELATED TO THE API OR TOOLS SHALL BE TERMINATION OF THIS AGREEMENT. NOTWITHSTANDING ANYTHING TO THE CONTRARY HEREIN, UNDER NO CIRCUMSTANCES SHALL SAP AND ITS LICENSORS BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR INDIRECT DAMAGES, LOSS OF GOOD WILL OR BUSINESS PROFITS, WORK STOPPAGE, DATA LOSS, COMPUTER FAILURE OR MALFUNCTION, ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSS, OR EXEMPLARY OR PUNITIVE DAMAGES.
|
|
25
|
+
|
|
26
|
+
8. INDEMNITY: You will fully indemnify, hold harmless and defend SAP against law suits based on any claim: (a) that any Customer Application created by You infringes or misappropriates any patent, copyright, trademark, trade secrets, or other proprietary rights of a third party, or (b) related to Your alleged violation of the terms of this Developer Agreement.
|
|
27
|
+
|
|
28
|
+
9. EXPORT: The Tools and API are subject to German, EU and US export control regulations. You confirm that: a) You will not use the Tools or API for, and will not allow the Tools or API to be used for, any purposes prohibited by German, EU and US law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction; b) You are not located in Cuba, Iran, Sudan, Iraq, North Korea, Syria, nor any other country to which the United States has prohibited export or that has been designated by the U.S. Government as a "terrorist supporting" country (any, an "US Embargoed Country"); c) You are not a citizen, national or resident of, and are not under the control of, a US Embargoed Country; d) You will not download or otherwise export or re-export the API or Tools, directly or indirectly, to a US Embargoed Country nor to citizens, nationals or residents of a US Embargoed Country; e) You are not listed on the United States Department of Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor listed on the United States Department of Commerce Table of Denial Orders or any other U.S. government list of prohibited or restricted parties and f) You will not download or otherwise export or re-export the API or Tools , directly or indirectly, to persons on the above-mentioned lists.
|
|
29
|
+
|
|
30
|
+
10. SUPPORT: Other than what is made available on the SAP Community Website (SCN) by SAP at its sole discretion and by SCN members, SAP does not offer support for the API or Tools which are the subject of this Developer Agreement.
|
|
31
|
+
|
|
32
|
+
11. TERM AND TERMINATION: You may terminate this Developer Agreement by destroying all copies of the API and Tools on Your Computer(s). SAP may terminate Your license to use the API and Tools immediately if You fail to comply with any of the terms of this Developer Agreement, or, for SAP's convenience by providing you with ten (10) day's written notice of termination (including by public notice). In case of termination or expiration of this Developer Agreement, You must destroy all copies of the API and Tools immediately. In the event Your Company or any of the intellectual property you create using the API, Tools or Software are acquired (by merger, purchase of stock, assets or intellectual property or exclusive license), or You become employed, by a direct competitor of SAP, then this Development Agreement and all licenses granted in this Developer Agreement shall immediately terminate upon the date of such acquisition.
|
|
33
|
+
|
|
34
|
+
12. LAW/VENUE:
|
|
35
|
+
a) If You are located outside the US or Canada: This Developer Agreement is governed by and construed in accordance with the laws of the Germany. You and SAP agree to submit to the exclusive jurisdiction of, and venue in, the courts of Karlsruhe in Germany in any dispute arising out of or relating to this Developer Agreement.
|
|
36
|
+
b) If You are located in the US or Canada: This Developer Agreement shall be governed by and construed under the Commonwealth of Pennsylvania law without reference to its conflicts of law principles. In the event of any conflicts between foreign law, rules, and regulations, and United States of America law, rules, and regulations, United States of America law, rules, and regulations shall prevail and govern. The United Nations Convention on Contracts for the International Sale of Goods shall not apply to this Developer Agreement. The Uniform Computer Information Transactions Act as enacted shall not apply.
|
|
37
|
+
|
|
38
|
+
13. MISCELLANEOUS: This Developer Agreement is the complete agreement for the API and Tools licensed (including reference to information/documentation contained in a URL). This Developer Agreement supersedes all prior or contemporaneous agreements or representations with regards to the subject matter of this Developer Agreement. If any term of this Developer Agreement is found to be invalid or unenforceable, the surviving provisions shall remain effective. SAP's failure to enforce any right or provisions stipulated in this Developer Agreement will not constitute a waiver of such provision, or any other provision of this Developer Agreement.
|
|
39
|
+
|
pyhdbcli.abi3.so
ADDED
|
Binary file
|