Search results

  1. tamhas

    Ads

    It is there for Rob and I.
  2. tamhas

    passing temp tables in a generic way

    No, I was only listing JSON as one of many ways to pass data. In order to make a recommendation of the preferable way to exchange the data, I would have to know more about your actual requirements. I might note that I tend to frown on passing temp-tables regardless. Better to encapsulate them...
  3. tamhas

    passing temp tables in a generic way

    For starters, I would recommend that you *not* do big complicated things in constructors. If they fail, you are left with a class that doesn't exist and the error handling is consequently more complicated. Better to initialize the class with a minimal constructor and then use an Initialize...
  4. tamhas

    Question Deleting a dynamic dataset

    "Looks like" is not confidence inspiring. One should "know" what will happen.
  5. tamhas

    Call .cls from other file

    It is very unclear what you are trying to do or expecting to happen. As Stefan said the USING statement has no function than to allow the use of an unqualified class name in the remaining body of the class. I.e., being able to reference just "base" instead of "ProcedureLibraries.base"...
  6. tamhas

    Ads

    Never have seen ads, but then I use AdBlock Plus.
  7. tamhas

    Anyone know transform designer bottomline ??

    Is it even Progress? Hard to imagine someone upgrading in 2020 from 4 to 9.
  8. tamhas

    Converting the given time to seconds

    There are many different answers, depending. Is the time you have a string or a date-time datatype or what. Are you looking for seconds since midnight?
  9. tamhas

    Question smtpmail.p; Can we save the email to *.eml

    Or better a bcc.
  10. tamhas

    Resolved Strange problem related to streams and break by totals.

    Point being, based on the code you supplied, the error message is reasonable.
  11. tamhas

    Resolved Strange problem related to streams and break by totals.

    In your code, you never set yesno, so it will be false and so you will not have opened the stream.
  12. tamhas

    Question Type-II-database again

    Tom, what about the wisdom of writing in chunks vs using LOBs?
  13. tamhas

    Why use substitute

    This is a plus for other uses of substitute as well, e.g., some kind of slice and dice where one could assemble pieces, but it would require additional logic to detect and handle unknown values.
  14. tamhas

    Primary Index allows null values?

    And, to emphasize, if mandatory is not checked, then there can be multiple records all with the same ? value even if the index is marked as unique.
  15. tamhas

    Primary Index allows null values?

    Plus, you need to mark it mandatory since, if it can have multiple null values without violating uniqueness.
  16. tamhas

    Difference between repeat and do block

    Note that one can scope a buffer or transaction to a DO loop, but one has to state it explicitly instead of it being implicit like with REPEAT.
  17. tamhas

    Fill a temp-table using sql statement. Is it possible

    I.e., if you are in a context where you can use SQL-92, you have no temp-tables.
  18. tamhas

    ProTop 3.141 is in the wild!

    How long until version 3.14159?
  19. tamhas

    Temp Table as parameter or Shared temp table

    More info would be useful as usual. What version of Progress. What license model? Do you have replication? If not, why not? Might it be a solution to run the read-only users on the replicate? If you are refreshing these temp-tables every 5 minutes to have current data for reporting, then...
  20. tamhas

    Temp Table as parameter or Shared temp table

    If you have a top level procedure which is not connected to the DB ... and I am not particularly sympathetic that it is sensible to be so stingy with licenses ... then the usual thing is to connect to the DB and transfer control to a subprocedure since it is only in that subprocedure that the DB...
Back
Top