I'm new to Zope and just installed the latest version (2.4.0). I also downloaded the ZODBCDA driver (it seems rather old to me (1999)). Is this the current driver? Where do I get the latest version? I installed the driver in the products folder and the system gives me an error that python15.dll can not be found. What am I doing wrong? Thanks, Thomas
You'll need one compiled for python 2.1, you can get it here: http://www.zope.org/Members/andym/ZODBCDA24 or have a search through the archives. Cheers. -- Andy McKay. ----- Original Message ----- From: "Thomas Hauck" <hauck@usc.edu> To: <zope@zope.org> Sent: Thursday, July 26, 2001 10:32 AM Subject: [Zope] ODBC DA with Zope2.4.0
I'm new to Zope and just installed the latest version (2.4.0). I also downloaded the ZODBCDA driver (it seems rather old to me (1999)). Is this the current driver? Where do I get the latest version? I installed the driver in the products folder and the system gives me an error that python15.dll can not be found. What am I doing wrong? Thanks, Thomas
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Hi, I have created a zclass who in the propertysheets has same properties like string, multiple lines, etc...with some default values that i give. When i create an instance of that zclass, it has those properties with the default values, but if i change one of those values, then when i make a change to the original zclass, the instance does not reflect me any more the changes...which is okey. So the question is: There is a way to know using for example an external method or perhaps with dtml, if an instance of a zclass is different from the zclass? I try using this: getattr(self,'meta_type') but it's returning me the name of the zclass... is there any property or something wich tell me if my instance is different from my zclass? Thanks.. Edgardo
Hi Edgardo, try self.__class__.attribute vs. self.attribute (This is only possible with external products or if you subclass with a python product. Regards Tino --On Donnerstag, 26. Juli 2001 15:52 -0300 Edgardo Zulian <ezulian@elsitio.com.ar> wrote:
Hi,
I have created a zclass who in the propertysheets has same properties like string, multiple lines, etc...with some default values that i give.
When i create an instance of that zclass, it has those properties with the default values, but if i change one of those values, then when i make a change to the original zclass, the instance does not reflect me any more the changes...which is okey.
So the question is:
There is a way to know using for example an external method or perhaps with dtml, if an instance of a zclass is different from the zclass?
I try using this:
getattr(self,'meta_type') but it's returning me the name of the zclass... is there any property or something wich tell me if my instance is different from my zclass?
Thanks..
Edgardo
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (4)
-
Andy McKay -
Edgardo Zulian -
Thomas Hauck -
Tino Wildenhain