[Zope] sql method call not working
Dieter Maurer
dieter@handshake.de
Sat, 15 Jun 2002 23:43:05 +0200
Kelley, Sean writes:
> I am trying to call a simple sql method to insert data from a form. Does
> not work. I have used this same way of doing it before and cannot see the
> problem. I can test the sql method and that works, but calling it from the
> html doc does not work. I can comment out the call and insert some html and
> that works ok also.
>
> <dtml-try>
> <dtml-call name="plancheck_insert">
> <dtml-except>
> <br>Sorry, your IW Plan Check Entry was not added to the database because
> an error occurred.
> </dtml-try>
>
> I get the exception message. Do you see a reason why this might not work?
> I looked at persmissions, spelling, etc.
Please remove the "try ... except" and check what exception is
raised.
This is necessary to understand why the exception happend.
Dieter