Search results

  1. M

    Lock Table overflow - a question.

    You might consider another option: Change code so it is not one single transaction (move delete part, top 3 lines, to sub-procedure). This way number of records will not be an issue. If you need to undo upload on error, then just call delete sub-procedure when you encounter error, or output...
  2. M

    Regular Expressions

    Tom, would be much more useful if you post actual working example instead of small comments.
  3. M

    WebSpeed File upload questions

    Sample code (from one of the other treads): <HTML> <BODY> <script language="SpeedScript"> DEFINE VAR mFile AS MEMPTR NO-UNDO. DEFINE VAR cfile AS CHAR NO-UNDO. IF get-value('upload') <> '' THEN do: ASSIGN mFile = get-binary-data("UploadFile"). IF mFile...
Top