I'm having some trouble with Python2.2 and DCOracle2. I'm successfully
executing a query, and getting the result I'm hoping for - with an added
bonus of some interesting encoding. The beginning of the result set I
get looks like this:
[['\x00A\x001', '\x00M\x00i\x00 k\x00e\x00
\x00P\x00o\x00r \x00t\x00n\x00o \x00y', None, None,
'\x00d\x00r\x00 u\x00m\x00s'], ...
So, where are those \x00 -characters coming? It should read:
[['A1', 'Mike Portnoy', None, None, 'drums'], ...
(...it's an artist database, and that's Dream Theater's drummer..)
--
Timo Virkkala | wt@nic.fi
"In the battle between you and the world, bet on the world."
executing a query, and getting the result I'm hoping for - with an added
bonus of some interesting encoding. The beginning of the result set I
get looks like this:
[['\x00A\x001', '\x00M\x00i\x00 k\x00e\x00
\x00P\x00o\x00r \x00t\x00n\x00o \x00y', None, None,
'\x00d\x00r\x00 u\x00m\x00s'], ...
So, where are those \x00 -characters coming? It should read:
[['A1', 'Mike Portnoy', None, None, 'drums'], ...
(...it's an artist database, and that's Dream Theater's drummer..)
--
Timo Virkkala | wt@nic.fi
"In the battle between you and the world, bet on the world."
Comment