NetTalk Central

Author Topic: File system errors and timeouts  (Read 3236 times)

ccordes

  • Sr. Member
  • ****
  • Posts: 384
    • View Profile
    • Email
File system errors and timeouts
« on: September 11, 2007, 10:37:59 AM »
I don't see anything here on this so I must be missing something...
I am using MSSQL and doing some auto-updating from uploaded csv files.
This all works very nicely until there is an error during the update.
Clarion pops a message on the server and the poor shlub out on the web gets a wait cursor and a timeout.

In my update procedure, I use -
 if access:myTable.tryupdate()
    posterror( this a procedure that builds a static page with processing errors)
 end

and then continue processing the rest of the incoming records (i think)
Like I said, did I miss something?

Thanks,
chris c

x-posted on 3rd party NG

Real programmers use copy con newapp.exe

Poul

  • Full Member
  • ***
  • Posts: 160
    • View Profile
Re: File system errors and timeouts
« Reply #1 on: September 12, 2007, 04:47:31 AM »
Clarion pops a message on the server and ...
quote]

If you mean a netalk file message, the message is from deep in abc and you need to hook the message, i use capesoft's messagebox  to quietly suppress.  Some messages can be supressed with the tick box on the netwebserver settings, but i have always ticked this so the only messages from the server is usually from the filemanager (much less of these lately) or ones i introduce myself.

i debug things with a message on the server which auto clears after a few seconds.

ccordes

  • Sr. Member
  • ****
  • Posts: 384
    • View Profile
    • Email
Re: File system errors and timeouts
« Reply #2 on: September 12, 2007, 06:01:27 AM »
Theres a checkbox? I will have to look for that.
And I was thinking about using messagebox.

THANKS!
chris
Real programmers use copy con newapp.exe