On 14 Jun 2006 03:43:39 -0700, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> i have some databse results that are NoneType and DateTimeType. now i
> have trouble
> joining these row results together like "|".join(result) as it says
> cannot join NoneType , DateTimeType . How can i change these types so i
> can join the columns together as string?

 "|".join(str(column) for column in result)

-- 
Cheers,
Simon B,
[EMAIL PROTECTED],
http://www.brunningonline.net/simon/blog/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to