Jump to content

Lars Fosdal

Administrators
  • Content Count

    3416
  • Joined

  • Last visited

  • Days Won

    113

Everything posted by Lars Fosdal

  1. Lars Fosdal

    Outlook Server Execution Failed

    It may be that the Outlook 2003 OLE server lacks some of the interfaces that your OLE client implementation requires. 2003 is pretty ancient...
  2. Lars Fosdal

    Loading data to multiple tables in a transaction

    It seems that the @Inserted_Values temp table does not use TIMESTAMP. declare @Inserted_Values table ( WX_5Min_Key int NOT NULL, [DateTime] DateTime NOT NULL );
  3. Lars Fosdal

    Loading data to multiple tables in a transaction

    Have you looked into which joins that fail? Is it possible to see any differences in the stored data / parameters that can cause joins that fail? Is the type strictly identical - ie both parameters and tables columns are of the TIMESTAMP type?
  4. Have you applied the most recent patches?
  5. It is useful to post the actual errors for others to be able to think about the cause.
  6. Lars Fosdal

    "Divided by zero" exception

    What target? Windows, iOS, Android, Linux? 32 or 64 bit? In the IDE or outside?
  7. Lars Fosdal

    Loading data to multiple tables in a transaction

    Which database do you use? Attached the reformatted SQL for readability. Personally I would never use a timestamp for a join, but that is probably just me. test.sql
  8. Lars Fosdal

    Is set a nullable type? (record constraint)

    The Delphi generics lack constraints support for enumerations and sets.
  9. Lars Fosdal

    Debugging problem (multithreaded & Intraweb)

    Perhaps @David Millington has a tip?
  10. Lars Fosdal

    Do bug fix patches really require active subscription?

    Hmm, yeah, that's a conundrum. A better pattern would be that your included subscription follows the cycle of the major version - i.e. 10.4.x.
  11. Lars Fosdal

    Do bug fix patches really require active subscription?

    I am on active update subscription. Can you even have 10.4.2 without one, considering that if you just bought 10.4.1 or 10.4.2 you would be within the one year subscription?
  12. Lars Fosdal

    Several F2084 Internal Error on Delphi 10.4.2

    @Marco Cantu - Has the RAD Studio Web Installer been updated with the patches, or do you have to patch after installation?
  13. Lars Fosdal

    Several F2084 Internal Error on Delphi 10.4.2

    In that case, it is silly that the patches are not in order, and that two of them have the same date. IMO, the description should have contained the patch number.
  14. Lars Fosdal

    Several F2084 Internal Error on Delphi 10.4.2

    I assume order of installation is not important.
  15. https://blogs.embarcadero.com/rad-studio-10-4-2-general-patch-and-delphi-compiler-patch/
  16. Lars Fosdal

    Two new 10.4.2 Patches released

    Make that three patches.
  17. Lars Fosdal

    Two new 10.4.2 Patches released

    @Dalija Prasnikar notified me that the try...finally issue that is mentioned as fixed is not actually fixed by those patches. There will be another patch soon. https://quality.embarcadero.com/browse/RSP-33117
  18. Lars Fosdal

    Find exception location from MAP file?

    Since I've not used MadExcept, I can't speak for that, but we use Eurekalog in several multithreaded NT services.
  19. Lars Fosdal

    Find exception location from MAP file?

    @A.M. Hoornweg The Eurekalog stack trace is for thread where the problem occurs. There also is an option to collect stacks from multiple threads at an access violation or exception, but it is usually not recommended since it is very resource intensive. Our service is heavily multithreaded as well, doing database work, multi-connection TCP comms, as well as serving a web UI to multiple concurrent users.
  20. Lars Fosdal

    Find exception location from MAP file?

    Eurekalog is invaluable for services. Eliminates the guesswork. Worth every €/$/£.
  21. @KodeZwerg That's not portable, though - and the quality of the PRNG would depend a lot on the parameters to BCryptOpenAlgorithmProvider.
  22. Don't know about good PRNGs, but get your seeds here. https://www.random.org/
  23. Lars Fosdal

    LSP Code Insight not working

    That seems to cover the subject quite aptly.
  24. Lars Fosdal

    What about additional free open source C++ libraries on GetIt ?

    TBH, I do not know how much C++ is done in VS versus other IDEs.
  25. Lars Fosdal

    What about additional free open source C++ libraries on GetIt ?

    So, to get real traction for a C++ Getit, one could write a plugin for VS and flog the heck out of it on the forums...
×