Files
pyDevSup/documentation/devsup.rst
Michael Davidsaver 4facd4339a documentation
2013-04-01 09:16:59 -04:00

1.7 KiB

devsup Package

devsup.verinfo

db Module

devsup.db

devsup.db.getRecord

Record Class

Allows access to a single record instance. Record instances can be created for any record in the process database. However, some features will only function when the record has Python device support.

Record objects allow access to fields through the field method and direct access to field values through attributes.

Attribute access is currently limited to scalar fields.

>>> R = getRecord("my:record:name") >>> F = R.field('VAL') >>> F.getval() 42 >>> R.VAL 42 >>> R.VAL = 43

name

rtype

field

scan

asyncStart

asyncFinish

info

infos

Field Class

devsup.db.Field

name

record

getval

putval

getarray

fieldinfo

devsup.db.IOScanListBlock

devsup.db.IOScanListThread

hooks Module

devsup.hooks

util Module

devsup.util