I trying the next, but not work say "
invalid syntax (Script (Python), line 11)"
2008/12/6 robert rottermann
<robert@redcor.ch>
hi,
I think you should write in a python script:
try:
result = context.insert_data.zsql
msg = 'data inserted'
except StandardError as e: <-- error here
msg = 'Error type %s. <br>Value: %s' % (e.type, e.value)
return msg
If change to
try:
result=context.proyecto_alta_zsql()
msg="Se incertaron los datos correctamente"
except StandardError, (e1,e2):
msg = "Error valor %s y %s" % (e1,e2)
return msg
say
Tipo: Unauthorized
Valor: You are not allowed to access 'a particular str' in this context
(same error with type?)