Binds a value to a variable. An empty string can be specified as data type.
(self, name, value, datatype='')
| 265 | self.__id = self.__exc(chr(0), querytxt) |
| 266 | |
| 267 | def bind(self, name, value, datatype=''): |
| 268 | """Binds a value to a variable. |
| 269 | An empty string can be specified as data type.""" |
| 270 | self.__exc(chr(3), self.__id + chr(0) + name + chr(0) + value + chr(0) + datatype) |
| 271 | |
| 272 | def context(self, value, datatype=''): |
| 273 | """Bind the context value""" |
no test coverage detected