6 Apr
2001
6 Apr
'01
8:27 p.m.
Jose Soares writes:
OID DISTRETTO ================ ========= a200000002000100 I10500
but Zope display it as:
OID DISTRETTO ------------------------- ยข I10500
Apparently, your database does not send the OID as a hexadecimal string but as a binary string. You could convert the binary string into a hexadecimal string in an External Method: from string import join def convertBinaryToHexString(binstring): return join(map(lambda c: '%x' % ord(c), binstring), '') Dieter