[Zope-DB] RE: selecting lobs from database

Rekha Iyer riyer at renovis.com
Tue Feb 14 16:01:18 EST 2006


 

Hello:

I'm running  Zope 2.7 with dcoracle2 and trying to select a lob from a
table via python script-zsql method and return it to a dtml document to
be displayed. This is my python script

 

compoundid = int(compoundid)

resultlist = []

 

for myrecords in container.select_lob(compoundid=compoundid):

    resultlist.append(myrecords.cdbregno)  #integer

    lob=myrecords['ctab']  #blob

    resultlist.append(lob.read())

    myclob=myrecords['molformula']  #clob

    resultlist.append(myclob.read())

 

return resultlist

 

When I run this it displays the cdbrego but displays None for both lob
fields. Is this a data type manipulation issue or is it something
specific to dcoracle2 support for lobs?

The zsql method is a simple select statement select cdbregno, ctab,
molformula from compound_moltable where compound_id = <dtml-sqlvar
compoundid type=int>

 

Thanks,

Rekha Iyer

 

 



This email may contain material that is confidential and privileged and
is for the sole use of the intended recipient. Any review, reliance or
distribution by others or forwarding without express permission is
strictly prohibited. If you are not the intended recipient, please
contact the sender and delete all copies.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.zope.org/pipermail/zope-db/attachments/20060214/cff81d2f/attachment.htm


More information about the Zope-DB mailing list