Hi! I got this error very often, until I realised, what went wrong. In my cases, I've defined i.e. a property of type "string", default="" and required="yes", which produced an error, because when you click on "Add", farcry creates a new item in your database. And if type is "string", you'll get the flag "NOT NULL" in your table definition. And if farcry tries to create a new item, with default="", your SQL-server produces an error.
Solution: Set your type to: "nstring", which means strings with "NULL" allowed. But you'll have to delete your table before, just changing the type of a property will not cause farcry to re-deploy the table. I hope I could help! Bye, Fritz On Thursday 14 October 2004 17:09, Lutz Biederbeck wrote: > Hi, > > after creating a new custom type (in addition to bosFAQ) there is a blank > page, after using the Add-Button. In debug mode there is the message > "Variable CALLER.stobj.typename is undefined" It is a exception from > forq.cfc (66). Is there a idea where my mistake is? > > Thanks > > --- > You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] > To unsubscribe send a blank email to > [EMAIL PROTECTED] Aussie Macromedia Developers: > http://lists.daemon.com.au/ -- �================================= | Fritz Dimmel | Gassnergasse 14 | 2020 Hollabrunn | AUSTRIA |--------------------------------- | phone: +43-2952-3231 | mobile: +43-650-6779776 | web: http://www.dimmel.at | mail: [EMAIL PROTECTED] |--------------------------------- | Enterity Cantabs | | *punkrockgrungesemiska* | aus dem Weinviertel �--------------------------------- | http://www.enterity-cantabs.com �================================= --- You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
