[Zope-DB] Re: ORACLE browse error "append() takes exactly 1 argument (7 given)"

Matthew T. Kromer matt@zope.com
Fri, 14 Feb 2003 16:05:59 -0500


Vikram Dham wrote:

>Hello,
>
>I am able to connect to Oracle 9i from Zope 2.6.0 using ZoracleDA and
>DCOracle2 but when I try to browse the database using browse I get the
>following error. Did anyone else also face the same problem ? Am I missing
>something  ? I will be grateful to any pointer on this.
>
>TIA
>
>Vikram Dham
>
>Exception traceback
>      Time 2003/02/14 15:16:41.236 US/Eastern
>      User Name (User Id) admin (admin)
>      Request URL
>http://localhost:8090/Examples/Oracle_database_connection/manage_browse
>      Exception Type TypeError
>      Exception Value append() takes exactly 1 argument (7 given)
>
>Traceback (innermost last):
>
>  a.. Module ZPublisher.Publish, line 98, in publish
>  b.. Module ZPublisher.mapply, line 88, in mapply
>  c.. Module ZPublisher.Publish, line 39, in call_object
>  d.. Module App.special_dtml, line 61, in __call__
>  e.. Module DocumentTemplate.DT_String, line 474, in __call__
>  f.. Module TreeDisplay.TreeTag, line 87, in render
>  g.. Module TreeDisplay.TreeTag, line 197, in tpRender
>  h.. Module TreeDisplay.TreeTag, line 251, in tpRenderTABLE
>  i.. Module Products.ZOracleDA.DABase, line 128, in tpValues
>  j.. Module Products.ZOracleDA.db, line 157, in tables
>  k.. Module Products.ZOracleDA.DCOracle.ocidb, line 102, in objects
>  l.. Module Products.ZOracleDA.DCOracle.ociCurs, line 202, in execute
>  m.. Module Products.ZOracleDA.DCOracle.ociCurs, line 165, in _describe
>TypeError: append() takes exactly 1 argument (7 given)
>
>  
>
Based on that traceback it doesn't look to me like you're using 
DCOracle2 -- I think you're using the original DCOracle.

When you get errors like that type error, it usually means something 
that expected a tuple was given a string, so it's taking it a character 
at a time.

DCOracle isn't supported anymore, only DCOracle2 -- but you're welcome 
to go take a look at the old module's ociCurs routine to see why it's 
doing something wrong.

On the other hand, you could just check your Zope products to make sure 
you've got DCOracle2 installed properly, and the whole problem will 
likely go away.