sqlalchemy-iris 0.5.0b3__py3-none-any.whl → 0.6.0b1__py3-none-any.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.
- intersystems_iris/_BufferReader.py +10 -0
- intersystems_iris/_BufferWriter.py +32 -0
- intersystems_iris/_ConnectionInformation.py +54 -0
- intersystems_iris/_ConnectionParameters.py +18 -0
- intersystems_iris/_Constant.py +38 -0
- intersystems_iris/_DBList.py +499 -0
- intersystems_iris/_Device.py +69 -0
- intersystems_iris/_GatewayContext.py +25 -0
- intersystems_iris/_GatewayException.py +4 -0
- intersystems_iris/_GatewayUtility.py +74 -0
- intersystems_iris/_IRIS.py +1294 -0
- intersystems_iris/_IRISConnection.py +516 -0
- intersystems_iris/_IRISEmbedded.py +85 -0
- intersystems_iris/_IRISGlobalNode.py +273 -0
- intersystems_iris/_IRISGlobalNodeView.py +25 -0
- intersystems_iris/_IRISIterator.py +143 -0
- intersystems_iris/_IRISList.py +360 -0
- intersystems_iris/_IRISNative.py +208 -0
- intersystems_iris/_IRISOREF.py +4 -0
- intersystems_iris/_IRISObject.py +424 -0
- intersystems_iris/_IRISReference.py +133 -0
- intersystems_iris/_InStream.py +149 -0
- intersystems_iris/_LegacyIterator.py +135 -0
- intersystems_iris/_ListItem.py +15 -0
- intersystems_iris/_ListReader.py +84 -0
- intersystems_iris/_ListWriter.py +157 -0
- intersystems_iris/_LogFileStream.py +115 -0
- intersystems_iris/_MessageHeader.py +51 -0
- intersystems_iris/_OutStream.py +25 -0
- intersystems_iris/_PrintStream.py +65 -0
- intersystems_iris/_PythonGateway.py +850 -0
- intersystems_iris/_SharedMemorySocket.py +87 -0
- intersystems_iris/__init__.py +79 -0
- intersystems_iris/__main__.py +7 -0
- intersystems_iris/dbapi/_Column.py +56 -0
- intersystems_iris/dbapi/_DBAPI.py +2295 -0
- intersystems_iris/dbapi/_Descriptor.py +46 -0
- intersystems_iris/dbapi/_IRISStream.py +63 -0
- intersystems_iris/dbapi/_Message.py +158 -0
- intersystems_iris/dbapi/_Parameter.py +138 -0
- intersystems_iris/dbapi/_ParameterCollection.py +133 -0
- intersystems_iris/dbapi/_ResultSetRow.py +314 -0
- intersystems_iris/dbapi/_SQLType.py +32 -0
- intersystems_iris/dbapi/__init__.py +0 -0
- intersystems_iris/dbapi/preparser/_PreParser.py +1658 -0
- intersystems_iris/dbapi/preparser/_Scanner.py +391 -0
- intersystems_iris/dbapi/preparser/_Token.py +81 -0
- intersystems_iris/dbapi/preparser/_TokenList.py +251 -0
- intersystems_iris/dbapi/preparser/__init__.py +0 -0
- intersystems_iris/pex/_BusinessHost.py +101 -0
- intersystems_iris/pex/_BusinessOperation.py +105 -0
- intersystems_iris/pex/_BusinessProcess.py +214 -0
- intersystems_iris/pex/_BusinessService.py +95 -0
- intersystems_iris/pex/_Common.py +228 -0
- intersystems_iris/pex/_Director.py +24 -0
- intersystems_iris/pex/_IRISBusinessOperation.py +5 -0
- intersystems_iris/pex/_IRISBusinessService.py +18 -0
- intersystems_iris/pex/_IRISInboundAdapter.py +5 -0
- intersystems_iris/pex/_IRISOutboundAdapter.py +17 -0
- intersystems_iris/pex/_InboundAdapter.py +57 -0
- intersystems_iris/pex/_Message.py +6 -0
- intersystems_iris/pex/_OutboundAdapter.py +46 -0
- intersystems_iris/pex/__init__.py +25 -0
- iris/__init__.py +25 -0
- iris/iris_site.py +13 -0
- iris/irisbuiltins.py +97 -0
- iris/irisloader.py +199 -0
- irisnative/_IRISNative.py +9 -0
- irisnative/__init__.py +10 -0
- {sqlalchemy_iris-0.5.0b3.dist-info → sqlalchemy_iris-0.6.0b1.dist-info}/METADATA +1 -1
- sqlalchemy_iris-0.6.0b1.dist-info/RECORD +83 -0
- sqlalchemy_iris-0.6.0b1.dist-info/top_level.txt +4 -0
- sqlalchemy_iris-0.5.0b3.dist-info/RECORD +0 -14
- sqlalchemy_iris-0.5.0b3.dist-info/top_level.txt +0 -1
- {sqlalchemy_iris-0.5.0b3.dist-info → sqlalchemy_iris-0.6.0b1.dist-info}/LICENSE +0 -0
- {sqlalchemy_iris-0.5.0b3.dist-info → sqlalchemy_iris-0.6.0b1.dist-info}/WHEEL +0 -0
- {sqlalchemy_iris-0.5.0b3.dist-info → sqlalchemy_iris-0.6.0b1.dist-info}/entry_points.txt +0 -0
iris/irisbuiltins.py
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
from collections import abc
|
2
|
+
|
3
|
+
#
|
4
|
+
# IRIS Exceptions
|
5
|
+
#
|
6
|
+
class SQLError(Exception):
|
7
|
+
"""Error raised on an invalid IRIS SQL statement
|
8
|
+
|
9
|
+
Attributes:
|
10
|
+
sqlcode -- IRIS SQL error code
|
11
|
+
message -- Error description
|
12
|
+
statement -- Statement that failed
|
13
|
+
"""
|
14
|
+
|
15
|
+
def __init__(self,sqlcode,message,statement=None):
|
16
|
+
self.sqlcode = sqlcode
|
17
|
+
self.message = message
|
18
|
+
self.statement = statement
|
19
|
+
super().__init__(self.message)
|
20
|
+
|
21
|
+
#
|
22
|
+
# Helper to raise a properly formatted AttributeError when we decide that
|
23
|
+
# we don't want to handle a last-chance method.
|
24
|
+
#
|
25
|
+
def _no_such_method(target,method):
|
26
|
+
raise AttributeError(f"'{target.__class__.__name__}' has no attribute '{method}'")
|
27
|
+
|
28
|
+
#
|
29
|
+
# irisbuiltins: Implements impedence matching methods for projecting IRIS behavior
|
30
|
+
# over Python objects.
|
31
|
+
#
|
32
|
+
class irisbuiltins:
|
33
|
+
|
34
|
+
#
|
35
|
+
# Common functions for mapping Python collection behavior to IRIS behavior
|
36
|
+
#
|
37
|
+
# NOTE: With Sequences, the indicies are 0 based for Python and 1 based
|
38
|
+
# for IRIS.
|
39
|
+
#
|
40
|
+
|
41
|
+
def Count(self):
|
42
|
+
if isinstance(self,abc.Mapping) or isinstance(self,abc.Sequence):
|
43
|
+
return len(self)
|
44
|
+
_no_such_method(self,"Count")
|
45
|
+
|
46
|
+
def GetAt(self,index):
|
47
|
+
if isinstance(self,abc.Mapping):
|
48
|
+
return self[index]
|
49
|
+
if isinstance(self,abc.Sequence):
|
50
|
+
return self[index-1]
|
51
|
+
_no_such_method(self,"GetAt")
|
52
|
+
|
53
|
+
def SetAt(self,value,index):
|
54
|
+
if isinstance(self,abc.Mapping):
|
55
|
+
self[index] = value
|
56
|
+
return
|
57
|
+
if isinstance(self,abc.Sequence):
|
58
|
+
self[index-1] = value
|
59
|
+
return
|
60
|
+
_no_such_method(self,"SetAt")
|
61
|
+
|
62
|
+
def Insert(self,value):
|
63
|
+
if isinstance(self,abc.Sequence):
|
64
|
+
self.append(value)
|
65
|
+
return
|
66
|
+
_no_such_method(self,"Insert")
|
67
|
+
|
68
|
+
def InsertAt(self,value,index):
|
69
|
+
if isinstance(self,abc.Sequence):
|
70
|
+
self.insert(index-1,value)
|
71
|
+
return
|
72
|
+
_no_such_method(self,"InsertAt")
|
73
|
+
|
74
|
+
def Clear(self):
|
75
|
+
if isinstance(self,abc.Mapping) or isinstance(self,abc.Sequence):
|
76
|
+
self.clear()
|
77
|
+
return
|
78
|
+
_no_such_method(self,"Clear")
|
79
|
+
|
80
|
+
def IsDefined(self,key):
|
81
|
+
if isinstance(self,abc.Mapping):
|
82
|
+
return (key in self)
|
83
|
+
_no_such_method(self,"IsDefined")
|
84
|
+
|
85
|
+
def Find(self,value):
|
86
|
+
if isinstance(self,abc.Sequence):
|
87
|
+
return self.index(value)+1
|
88
|
+
if isinstance(self,abc.Mapping):
|
89
|
+
for (k,v) in self.items():
|
90
|
+
if v == value:
|
91
|
+
return k
|
92
|
+
return None;
|
93
|
+
_no_such_method(self,"Find")
|
94
|
+
|
95
|
+
#
|
96
|
+
# End-of-file
|
97
|
+
#
|
iris/irisloader.py
ADDED
@@ -0,0 +1,199 @@
|
|
1
|
+
from importlib.abc import MetaPathFinder
|
2
|
+
from importlib.abc import Loader
|
3
|
+
import importlib
|
4
|
+
from types import ModuleType
|
5
|
+
import math
|
6
|
+
import marshal
|
7
|
+
import sys
|
8
|
+
import iris
|
9
|
+
|
10
|
+
sources=iris.gref("^ROUTINE")
|
11
|
+
binaries=iris.gref("^rPYC")
|
12
|
+
MAX_STRING_SIZE=3800000
|
13
|
+
|
14
|
+
def getFromDirectory(directory, path):
|
15
|
+
level=len(path)
|
16
|
+
if level == 1:
|
17
|
+
return directory[path[0]]
|
18
|
+
elif level == 2:
|
19
|
+
return directory[path[0],path[1]]
|
20
|
+
elif level == 3:
|
21
|
+
return directory[path[0],path[1],path[2]]
|
22
|
+
elif level == 4:
|
23
|
+
return directory[path[0],path[1],path[2],path[3]]
|
24
|
+
elif level == 5:
|
25
|
+
return directory[path[0],path[1],path[2],path[3],path[4]]
|
26
|
+
elif level == 6:
|
27
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5]]
|
28
|
+
elif level == 7:
|
29
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5],path[6]]
|
30
|
+
elif level == 8:
|
31
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5],path[6],path[7]]
|
32
|
+
elif level == 9:
|
33
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5],path[6],path[7],path[8]]
|
34
|
+
|
35
|
+
#name is name of rtn with .py
|
36
|
+
def getSourceCode(name):
|
37
|
+
currentP = [name] + [0,0]
|
38
|
+
length = getFromDirectory(sources, currentP)
|
39
|
+
currentP.pop()
|
40
|
+
if not length or length == 0:
|
41
|
+
return None
|
42
|
+
code = ""
|
43
|
+
for i in range(1,int(length)+1):
|
44
|
+
currentP.append(i)
|
45
|
+
code += getFromDirectory(sources, currentP)
|
46
|
+
code += "\r\n"
|
47
|
+
currentP.pop()
|
48
|
+
return code
|
49
|
+
|
50
|
+
def getCodeFromBinary(name):
|
51
|
+
length = binaries.get([name],0)
|
52
|
+
if (length < 1):
|
53
|
+
return None
|
54
|
+
codeBytes = binaries.getAsBytes([name,1])
|
55
|
+
for i in range(1,int(length)):
|
56
|
+
codeBytes += binaries.getAsBytes([name,i+1])
|
57
|
+
return marshal.loads(codeBytes)
|
58
|
+
|
59
|
+
# def checkCode(directory, path):
|
60
|
+
# currentP = [p for p in path] + [0,0]
|
61
|
+
# length = getFromDirectory(directory, currentP)
|
62
|
+
# currentP.pop()
|
63
|
+
# if not length or length == 0:
|
64
|
+
# return None
|
65
|
+
# return length
|
66
|
+
|
67
|
+
def checkCode(name):
|
68
|
+
#code exist for module
|
69
|
+
|
70
|
+
if binaries.get([name],0) > 0:
|
71
|
+
return True
|
72
|
+
sub = binaries.order([name+"."])
|
73
|
+
#there exists some subpackage
|
74
|
+
if (sub and sub[:len(name)] == name):
|
75
|
+
return True
|
76
|
+
return False
|
77
|
+
|
78
|
+
def compileCode(name):
|
79
|
+
path = name.split(".")
|
80
|
+
classname = path[-1]
|
81
|
+
code = getSourceCode(name+".py")
|
82
|
+
if code:
|
83
|
+
codeobj = compile(code,classname,"exec")
|
84
|
+
compiledpython = marshal.dumps(codeobj)
|
85
|
+
|
86
|
+
#store in database
|
87
|
+
length=len(compiledpython)
|
88
|
+
chunks = math.ceil(length / MAX_STRING_SIZE)
|
89
|
+
binaries[name] = chunks
|
90
|
+
for i in range(chunks):
|
91
|
+
binaries[name,i+1] = compiledpython[i*MAX_STRING_SIZE:min(MAX_STRING_SIZE*(i+1),length)]
|
92
|
+
|
93
|
+
#delete old version of this module
|
94
|
+
# if name in sys.modules:
|
95
|
+
# del sys.modules[name]
|
96
|
+
return 1
|
97
|
+
return 0
|
98
|
+
|
99
|
+
#
|
100
|
+
# Impedence matcher prototype
|
101
|
+
#
|
102
|
+
|
103
|
+
def mapping_GetAt(self,key):
|
104
|
+
return self[key]
|
105
|
+
|
106
|
+
def mapping_SetAt(self,value,key):
|
107
|
+
self[key] = value
|
108
|
+
|
109
|
+
def sequence_GetAt(self,index):
|
110
|
+
return self[index-1]
|
111
|
+
|
112
|
+
def sequence_SetAt(self,value,index):
|
113
|
+
self[index-1] = value
|
114
|
+
|
115
|
+
def materialize(obj):
|
116
|
+
if isinstance(obj,collections.abc.Mapping):
|
117
|
+
obj.Count = obj.__len__
|
118
|
+
obj.GetAt = mapping_GetAt
|
119
|
+
obj.SetAt = mapping_SetAt
|
120
|
+
return True
|
121
|
+
if isinstance(obj,collections.abc.Sequence):
|
122
|
+
obj.Count = obj.__len__
|
123
|
+
obj.GetAt = sequence_GetAt
|
124
|
+
obj.SetAt = sequence_SetAt
|
125
|
+
return True
|
126
|
+
return False
|
127
|
+
|
128
|
+
class MyLoader(Loader):
|
129
|
+
def create_module(self,spec):
|
130
|
+
|
131
|
+
module = ModuleType(spec.name)
|
132
|
+
module.__spec__=spec
|
133
|
+
module.__loader__ = self
|
134
|
+
module.__path__ = spec.__path__
|
135
|
+
return module
|
136
|
+
|
137
|
+
def exec_module(self, module):
|
138
|
+
#path = [p+".py" for p in module.__path__]
|
139
|
+
name = ""
|
140
|
+
code = None
|
141
|
+
for n in module.__path__:
|
142
|
+
name += n
|
143
|
+
name += "."
|
144
|
+
if name:
|
145
|
+
code = getCodeFromBinary(name[:len(name)-1])
|
146
|
+
|
147
|
+
#this is a class or has code by itself
|
148
|
+
if code:
|
149
|
+
#print(marshal.loads(bytes(code,"utf-8")))
|
150
|
+
#print(type(code))
|
151
|
+
exec(code,module.__dict__)
|
152
|
+
#this is a module
|
153
|
+
# ismodule = getFromDirectory(path+["catalog"])
|
154
|
+
# if ismodule:
|
155
|
+
# for s in ismodule.split(","):
|
156
|
+
# code = getFromDirectory(path+[s])
|
157
|
+
# if code:
|
158
|
+
# exec(code,module.__dict__)
|
159
|
+
|
160
|
+
|
161
|
+
class MyFinder(MetaPathFinder):
|
162
|
+
def __init__(self):
|
163
|
+
return
|
164
|
+
|
165
|
+
def find_spec(self,fullname,path,target=None):
|
166
|
+
|
167
|
+
#print("importing1: "+fullname)
|
168
|
+
ans = fullname.split(".")
|
169
|
+
currentName=ans[-1]
|
170
|
+
for i in range(len(ans)):
|
171
|
+
ans[i] += ".py"
|
172
|
+
#validate existance from globals
|
173
|
+
#this might be wrong
|
174
|
+
if not checkCode(fullname):
|
175
|
+
return None
|
176
|
+
spec = importlib.machinery.ModuleSpec(fullname, MyLoader())
|
177
|
+
#update path
|
178
|
+
if path:
|
179
|
+
spec.__path__ = path + [currentName]
|
180
|
+
else:
|
181
|
+
spec.__path__ = [currentName]
|
182
|
+
# set parent
|
183
|
+
if len(ans) == 1:
|
184
|
+
if path:
|
185
|
+
spec.__parent__=path[-1]
|
186
|
+
else:
|
187
|
+
spec.__parent__= None
|
188
|
+
else:
|
189
|
+
spec.__parent__=ans[-1]
|
190
|
+
|
191
|
+
return spec
|
192
|
+
|
193
|
+
|
194
|
+
sys.meta_path.append(MyFinder())
|
195
|
+
#del sys
|
196
|
+
#test:
|
197
|
+
#s imp = ##class(%SYS.Python).Import("customImport")
|
198
|
+
#s xx = ##class(%SYS.Python).Import("User")
|
199
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import intersystems_iris
|
2
|
+
|
3
|
+
def createConnection(*args, connectionstr=None, hostname=None, port=None, namespace=None, username=None, password=None, timeout=None, sharedmemory=None, logfile=None):
|
4
|
+
'''This method has been deprecated. Please use iris.createConnection(...)'''
|
5
|
+
return intersystems_iris.createConnection(*args, connectionstr=connectionstr, hostname=hostname, port=port, namespace=namespace, username=username, password=password, timeout=timeout, sharedmemory=sharedmemory, logfile=logfile)
|
6
|
+
|
7
|
+
def createIris(connection):
|
8
|
+
'''This method has been deprecated. Please use iris.createIRIS(...)'''
|
9
|
+
return intersystems_iris.createIRIS(connection)
|
irisnative/__init__.py
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
'''
|
2
|
+
irisnative module provided for backwards compatibility only.
|
3
|
+
|
4
|
+
IRIS Native API for Python.
|
5
|
+
|
6
|
+
This module provides highly efficient and lightweight access to IRIS, including the Global Module and object oriented programming environment.
|
7
|
+
'''
|
8
|
+
from irisnative._IRISNative import createConnection
|
9
|
+
from irisnative._IRISNative import createIris
|
10
|
+
|
@@ -0,0 +1,83 @@
|
|
1
|
+
intersystems_iris/_BufferReader.py,sha256=BXjHQs-sclAnvW9mvdlIrtku9m2Jf67Rc5rsZll7a5g,299
|
2
|
+
intersystems_iris/_BufferWriter.py,sha256=i2BKM99J8pB5fGn-Gjdo4vcwXPEZQymsLEQd69nJrhs,1337
|
3
|
+
intersystems_iris/_ConnectionInformation.py,sha256=Xr6sOPy3uKFyOG05hTmutDHTNjHDhCnCVwH0TTNEwBE,1896
|
4
|
+
intersystems_iris/_ConnectionParameters.py,sha256=5-VwMJP_6Ya0lNnMf0UuwJQQfwHcozjknnUekMwCgQ4,578
|
5
|
+
intersystems_iris/_Constant.py,sha256=g2NdV669sNH4kUoAjQFNq2xWaEMQiPMoQytNNrrXOnk,1483
|
6
|
+
intersystems_iris/_DBList.py,sha256=hoq5N4xNB_ocZSGKO5tNOK4NAPhYwOxkMfrgaFev2OQ,20005
|
7
|
+
intersystems_iris/_Device.py,sha256=02rNhk32bLrcOdGDOsRHuX79-MLblGvAdBa-XfHtVkw,2311
|
8
|
+
intersystems_iris/_GatewayContext.py,sha256=anipv7v5rDS2Ha2MmXTuMtFjo6UNgzUF3SwKQSS-co8,618
|
9
|
+
intersystems_iris/_GatewayException.py,sha256=Hs5en7W1mhtt2heuoeyhF5IqFKGqbRD5GWyWZUhwDzs,96
|
10
|
+
intersystems_iris/_GatewayUtility.py,sha256=gJTslU_UZBI8bWPTPe6b41DwhaAmlpzUNYT0LkAKXKk,2735
|
11
|
+
intersystems_iris/_IRIS.py,sha256=vlxyMtfvyTkHHw5CkfNYqNbR1zUdAknfbLVTGxEOv3E,49548
|
12
|
+
intersystems_iris/_IRISConnection.py,sha256=MmPIQJPZ28HoSYafvf4r5cbenzDiHmZhKgZXVfSxnCw,21467
|
13
|
+
intersystems_iris/_IRISEmbedded.py,sha256=27oB-o53b1w3gbXNxyT6Z1DGWd9gc4x1h3Nz9luOhN4,2614
|
14
|
+
intersystems_iris/_IRISGlobalNode.py,sha256=o2MEvyRmNrvLAR0dpeQ76r9b8Yw2sKDaaRLFyGYdcDQ,12049
|
15
|
+
intersystems_iris/_IRISGlobalNodeView.py,sha256=0yw9z_mpSLk2m3we5z_vKSjnEdmKfZb11bbASZiiSm8,797
|
16
|
+
intersystems_iris/_IRISIterator.py,sha256=m1n_fRdoO8YPfDi7l-JvJTqdJuxq_kxC60aMxkxLJUE,6906
|
17
|
+
intersystems_iris/_IRISList.py,sha256=G_gMRqoP5DNiKwJYa6effkrKCwmFjxFTiEB104cdzow,10247
|
18
|
+
intersystems_iris/_IRISNative.py,sha256=aNMLADSzRwuKXomwrbB7AC6KaR6-R9fHYStAJLv0V9E,6756
|
19
|
+
intersystems_iris/_IRISOREF.py,sha256=WRRJV-_9QlOrzc_8gG6sfItfks4JdQy3N0aCcYXdpkQ,82
|
20
|
+
intersystems_iris/_IRISObject.py,sha256=ZjdpQdy-NP0sXFdxQix58dW7kCo4ck-L9AKo9xRRoPU,14456
|
21
|
+
intersystems_iris/_IRISReference.py,sha256=pkDAYgxkOmDf8fpRpQf8w-12EYZ1lgqXmkRYuYQXvIo,4905
|
22
|
+
intersystems_iris/_InStream.py,sha256=6g4HdDoQ0MFub8Yn-Git8DkJNEoyyAtAhrvjkUdDA7I,6643
|
23
|
+
intersystems_iris/_LegacyIterator.py,sha256=K1CPMBDWBCwKVqIq9hBJ2q_uMiBnht_OdN66g7ZqXfw,4130
|
24
|
+
intersystems_iris/_ListItem.py,sha256=k9m0Q0W3e3WuI5cpB1GSZOR9NkkCT87lgvBwYFMzvic,354
|
25
|
+
intersystems_iris/_ListReader.py,sha256=wgK0HC56lI1Wdp9Sr3rax6w8NoR5p2YpklswpNIS5X8,2966
|
26
|
+
intersystems_iris/_ListWriter.py,sha256=JGmUkzzWUGbwflb9szpRQU305dWqoGkFMvCMwP8uPkE,5515
|
27
|
+
intersystems_iris/_LogFileStream.py,sha256=Dv3S8-zY3b7P4xXx7w0UVGm2vuz7bWTyaOTg6eK0l2s,3797
|
28
|
+
intersystems_iris/_MessageHeader.py,sha256=N45Qp25ER7ftGA0BRBxErIpavDF-j4qWv_0kobkAp6U,1662
|
29
|
+
intersystems_iris/_OutStream.py,sha256=_I83KPUCv9yBHsaB4QGBeSatypdiMGJxckKdNY1Jzyg,1327
|
30
|
+
intersystems_iris/_PrintStream.py,sha256=GNMTk-D1Nlgb6WuTGjEC6O5DRV9bqVg7JN__Gf9GNPM,1963
|
31
|
+
intersystems_iris/_PythonGateway.py,sha256=miV92LhCqsuBIRpLix1oqFjl5SCw9Df-GMTD6Z2Mbf0,41638
|
32
|
+
intersystems_iris/_SharedMemorySocket.py,sha256=2iUaS1FdJNSCUEaE-VT0O_dxF6NRwqZSxlyLfwhT9_E,4330
|
33
|
+
intersystems_iris/__init__.py,sha256=Tk1tD28LwvF6X3yXQsJFLE1Bc-PR3gUJWcX5UnNYOdY,1773
|
34
|
+
intersystems_iris/__main__.py,sha256=rCtINTfJcADMAsw1ja-MEO7Q-XekrWthYowzWV8xGIQ,218
|
35
|
+
intersystems_iris/dbapi/_Column.py,sha256=VCLHLXs3wuGcUa9w_qy7HBFsuGvhmmI3kGYBagQg59U,2535
|
36
|
+
intersystems_iris/dbapi/_DBAPI.py,sha256=nLH8zT3nmHuLoMBNgswXoV5Bw41Mu-BFjSEDOL8sy5Q,94603
|
37
|
+
intersystems_iris/dbapi/_Descriptor.py,sha256=IjyITxvjygDrhpk-0lGhdqQPh91SG6nTb1vi-AqyJNI,1391
|
38
|
+
intersystems_iris/dbapi/_IRISStream.py,sha256=Vz3ydS9djxqqp-1F385FHgjjJNosXNpGMu-rkAPJDrs,2113
|
39
|
+
intersystems_iris/dbapi/_Message.py,sha256=jpLG3HZElqp981iNPFW8UNRO3NbHf6poEv6yywX0Ssw,4076
|
40
|
+
intersystems_iris/dbapi/_Parameter.py,sha256=i8J37BnmIR-YHdsyfiht8NCh9fHhcY6B8ONPMch-sKE,4776
|
41
|
+
intersystems_iris/dbapi/_ParameterCollection.py,sha256=ta8nuwHjTbY4V_ouOmNQv4C46u8eA6cdvij9xIWqQuo,5151
|
42
|
+
intersystems_iris/dbapi/_ResultSetRow.py,sha256=LGLCDTOwHdA_EfcHz7hcUdWttQ_jpBR2gX2oXAXRkQM,12186
|
43
|
+
intersystems_iris/dbapi/_SQLType.py,sha256=IlDacXwQzUMWaJ02Zsu2bUfvUC3-5mBx-m6mE0Yp7ts,557
|
44
|
+
intersystems_iris/dbapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
|
+
intersystems_iris/dbapi/preparser/_PreParser.py,sha256=Tpii9ptrt1qEJq6e6Pe8c7EuSXgjiQjEA_D01Z4Hoig,78424
|
46
|
+
intersystems_iris/dbapi/preparser/_Scanner.py,sha256=xA8rkKsaVba_mAgoXEeliyuMxNKe4vVmmw_klukdf_U,16163
|
47
|
+
intersystems_iris/dbapi/preparser/_Token.py,sha256=9ZYrjvYJtMApAR7RtYzp32Hcoo3jB_YpG7ECo7p6QHA,2304
|
48
|
+
intersystems_iris/dbapi/preparser/_TokenList.py,sha256=P74kA3DXxi7imt0mea4LPjCCc_gk50zsYLOCWON_JvA,6770
|
49
|
+
intersystems_iris/dbapi/preparser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
+
intersystems_iris/pex/_BusinessHost.py,sha256=arBAUZetLPhJY2on3BK5BJOZXXjLVJ3gr_VvkncbWDs,4370
|
51
|
+
intersystems_iris/pex/_BusinessOperation.py,sha256=gEyPF6A04si6UqVUY_75ulYzjMBhe337GTkcbK2OGfA,5241
|
52
|
+
intersystems_iris/pex/_BusinessProcess.py,sha256=P5AT-F88-_AIPL4zgCghH5Ngu3Hm_ZwOBr_CCrv7w4g,10774
|
53
|
+
intersystems_iris/pex/_BusinessService.py,sha256=7NVCxIdAvT9Bpcd5NPGbq-0xdhLT-TzyAaUMYTnvlVk,5441
|
54
|
+
intersystems_iris/pex/_Common.py,sha256=lxvHRxd8bnhCFrbiz98q5hV7o9WrK0EMJyml4T7Ou98,10509
|
55
|
+
intersystems_iris/pex/_Director.py,sha256=_mVLMa0OG5E4mjf6TnHHi3Xli7RREo-9l9Pq73B5zCA,1203
|
56
|
+
intersystems_iris/pex/_IRISBusinessOperation.py,sha256=z95u6YdR41gsWKbBPJDIyQxogdUcjJIdwlHShaZLahQ,172
|
57
|
+
intersystems_iris/pex/_IRISBusinessService.py,sha256=FKZFyJMgZheSDWcv8y7cdkIdY24PEitV2stTIIN972U,585
|
58
|
+
intersystems_iris/pex/_IRISInboundAdapter.py,sha256=oHLaJXpXNaU1U5dx3Kum7tOwCyR3FAWethw9iuS8CK4,171
|
59
|
+
intersystems_iris/pex/_IRISOutboundAdapter.py,sha256=W0YGTbI4KANzeERmpcy0ZpPYy3pt-v86wiOD9QDQ_zI,522
|
60
|
+
intersystems_iris/pex/_InboundAdapter.py,sha256=gZlWl7afumamkj8pNbpLyKFSzhaTAiAXk5mDEiFPnrA,2296
|
61
|
+
intersystems_iris/pex/_Message.py,sha256=Ugaa_lsEYke__pI5kdC7phAuyPQ7rxXUcROJL4cUxVQ,320
|
62
|
+
intersystems_iris/pex/_OutboundAdapter.py,sha256=ao2Ubbta2DcrQGdzDUD_j1Zsk8bvUfcZNKTZkzPTNBU,1628
|
63
|
+
intersystems_iris/pex/__init__.py,sha256=l_I1dpnluWawbFrGMDC0GLHpuHwjbpd-nho8otFX6TE,1379
|
64
|
+
iris/__init__.py,sha256=LkzzOjjr6E4AWvLpJViqqTbPeblePyrE2vQRHa6CVBk,815
|
65
|
+
iris/iris_site.py,sha256=K05T41T2dEZcoN45sFgIMNNeH2tandxgcJWjVEQzbno,501
|
66
|
+
iris/irisbuiltins.py,sha256=0xMYrnTJ8q3WsQ8CXlKHYnfAVTIkO-PXDpdQ_SvHVpI,2687
|
67
|
+
iris/irisloader.py,sha256=2ZLM0FlYNStTiZrXuvDcO-V_XZVgmB3R8vesmaqMqYA,4808
|
68
|
+
irisnative/_IRISNative.py,sha256=HQ4nBhc8t8_5OtxdMG-kx1aa-T1znf2I8obZOPLOPzg,665
|
69
|
+
irisnative/__init__.py,sha256=6YmvBLQSURsCPKaNg7LK-xpo4ipDjrlhKuwdfdNb3Kg,341
|
70
|
+
sqlalchemy_iris/__init__.py,sha256=YHo84hLU5wh_ArVZQKcWUHZWiIZp2DhG-Z1dHZfgflM,315
|
71
|
+
sqlalchemy_iris/base.py,sha256=EKhPG9NzccKnuilKa_ZvlFG3A35La6ZOIn06y7nFbKM,39341
|
72
|
+
sqlalchemy_iris/embedded.py,sha256=6DbnfcJwYQmHjyvQQ0cN6mV6zbF3AAOJkucww5LypiE,547
|
73
|
+
sqlalchemy_iris/information_schema.py,sha256=q138mlPC3x5k3QCAxSdR7fGSUdblO-ir5dmPvxv5sX8,6104
|
74
|
+
sqlalchemy_iris/iris.py,sha256=Of0Ruc9W2c5ll5sjAy1xRo4tf1m0l_ab0vAdacTv3Yw,276
|
75
|
+
sqlalchemy_iris/provision.py,sha256=drorbIgNO770Ws0XiCRXY_sDbQGIy2_zzNK3KYrDetY,198
|
76
|
+
sqlalchemy_iris/requirements.py,sha256=o98-lP3lp92iXr66ZfPMsS5O-orE8Z0ihI9eKxq7Zrw,6055
|
77
|
+
sqlalchemy_iris/types.py,sha256=7xUv7wze-93OJFP4dZxM23S5bxYPLg3vAcns0D0Tn8g,3873
|
78
|
+
sqlalchemy_iris-0.6.0b1.dist-info/LICENSE,sha256=RQmigqltsLq8lfOBc_KwtL0gkODyUCNpU-0ZiZwGlho,1075
|
79
|
+
sqlalchemy_iris-0.6.0b1.dist-info/METADATA,sha256=Dpz_eR80wPstpcTWNqeABZanXlLu-9oeoLcBrJ66PMg,2340
|
80
|
+
sqlalchemy_iris-0.6.0b1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
81
|
+
sqlalchemy_iris-0.6.0b1.dist-info/entry_points.txt,sha256=w7qS4R3anhoVEC5rzpw1H6gLu41wdZiahfg9bNH0Tio,119
|
82
|
+
sqlalchemy_iris-0.6.0b1.dist-info/top_level.txt,sha256=mjpHqFjekbB1TWr3xI3o4AqN3Spby-_uqyuSSeBDmuw,50
|
83
|
+
sqlalchemy_iris-0.6.0b1.dist-info/RECORD,,
|
@@ -1,14 +0,0 @@
|
|
1
|
-
sqlalchemy_iris/__init__.py,sha256=YHo84hLU5wh_ArVZQKcWUHZWiIZp2DhG-Z1dHZfgflM,315
|
2
|
-
sqlalchemy_iris/base.py,sha256=EKhPG9NzccKnuilKa_ZvlFG3A35La6ZOIn06y7nFbKM,39341
|
3
|
-
sqlalchemy_iris/embedded.py,sha256=6DbnfcJwYQmHjyvQQ0cN6mV6zbF3AAOJkucww5LypiE,547
|
4
|
-
sqlalchemy_iris/information_schema.py,sha256=q138mlPC3x5k3QCAxSdR7fGSUdblO-ir5dmPvxv5sX8,6104
|
5
|
-
sqlalchemy_iris/iris.py,sha256=Of0Ruc9W2c5ll5sjAy1xRo4tf1m0l_ab0vAdacTv3Yw,276
|
6
|
-
sqlalchemy_iris/provision.py,sha256=drorbIgNO770Ws0XiCRXY_sDbQGIy2_zzNK3KYrDetY,198
|
7
|
-
sqlalchemy_iris/requirements.py,sha256=o98-lP3lp92iXr66ZfPMsS5O-orE8Z0ihI9eKxq7Zrw,6055
|
8
|
-
sqlalchemy_iris/types.py,sha256=7xUv7wze-93OJFP4dZxM23S5bxYPLg3vAcns0D0Tn8g,3873
|
9
|
-
sqlalchemy_iris-0.5.0b3.dist-info/LICENSE,sha256=RQmigqltsLq8lfOBc_KwtL0gkODyUCNpU-0ZiZwGlho,1075
|
10
|
-
sqlalchemy_iris-0.5.0b3.dist-info/METADATA,sha256=nX8y0Ffs-ZJpg97QnNo-V39zdR1m5fDygDAAVrg0VAU,2340
|
11
|
-
sqlalchemy_iris-0.5.0b3.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
12
|
-
sqlalchemy_iris-0.5.0b3.dist-info/entry_points.txt,sha256=w7qS4R3anhoVEC5rzpw1H6gLu41wdZiahfg9bNH0Tio,119
|
13
|
-
sqlalchemy_iris-0.5.0b3.dist-info/top_level.txt,sha256=tgokQjAfFuPjWy4ow5qp2dlhmPsZmE2O5UKwGMF3lhg,16
|
14
|
-
sqlalchemy_iris-0.5.0b3.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
sqlalchemy_iris
|
File without changes
|
File without changes
|
File without changes
|