Search Results

1
vote

Type checking on Caché Objects

Those types aren't used/checked internal to Cache code, but they are used when you expose your classes via XML, SQL, etc. One would hope that in a future version Intersystems would start do …
1
vote

How to prevent <session disconnected> errors while running Intersystems Caché terminal scritps?

Is there a chance it's not a timeout, but some other problem? Possibly a runtime error that's not being trapped/logged? The main difference between running from the interactive console and …
0
votes

How to really trap all errors with $etrap in Intersystems Caché?

Is is possible that an old-style error trap ($ZTRAP) is being set only in Usermode? The documentation on this is pretty good, so I won't repeat it all here, but a key point is that $ZTRAP i …
1
vote

How to make Intersystems Caché use the new compiled class instead of the older one?

Here are a couple of things to try: Instead of loading/compiling each class separately, load both without compiling, then compile both at once. Like this: W $SYSTEM. …