18 Feb
2003
18 Feb
'03
9:36 p.m.
Santoshi Reddy wrote at 2003-2-17 16:16 -0500:
I am using zope and oracle 9i.I have noticed a strange thing when i create table using SQL in oracle 9i, the names of the attributes (columns) are in upper case.Is there any particular reason why that is the case.is zope case sensitive.
Zope is case sensitive (which is good). Oracle converts its names into all upper case unless you enclose them into double quotes (i.e. "..."). Avoid the "...", if possible, as it makes it more difficult to use "dtml-sqltest". Dieter