VAL asignment for waveforms

This commit is contained in:
Philipp
2018-10-31 22:13:27 +01:00
parent 54fabd3a9d
commit 62b4a046bc

View File

@ -277,7 +277,11 @@ class Record(_dbapi._Record):
except ValueError:
super(Record, self).__setattr__(name, val)
else:
F.putval(val)
if len(F) > 1:
F.getarray().flat = val
F.putarraylen(len(val))
else:
F.putval(val)
def __repr__(self):