Jump to content

Lars Fosdal

Administrators
  • Content Count

    3504
  • Joined

  • Last visited

  • Days Won

    115

Everything posted by Lars Fosdal

  1. Sounds like bullshit to me. No random crashes that we didn't cause ourselves that I can remember, and I've used every Delphi version there is, on most of the Windows versions there has been.
  2. There is one unmentioned drawback to VMs. The more you have, the more you need to keep updated and patched. That is the price you pay for flexibility.
  3. The only thing that is slow in my VMs is 3D gfx, but since I don't rely on those - it is not a problem.
  4. MS submitted changes to the Linux kernel in June 2020 that would allow running Hyper-V hosting on Linux. Not sure if this is present in any current Linux release yet.
  5. 3D GPU performance is a mixed bag, imo - but why would you test that in a VM? You'd remote debug that from the VM on a physical machine. The CPU is virtualized, so I guess the only time you'd get into trouble is if you try to run something like a VM with 8 cores on a 4 core machine or use more memory than is physically present. I would expect Hyper-V to simply cut down to the max avail if exceeded.
  6. Lars Fosdal

    TJsonTextWriter out of memory

    Well, Delphi 32-bit stops at 2Gb. If you need more memory, I suggest a 64-bit app.
  7. Lars Fosdal

    TArray<T> helper

    @Tommi Prami It would have been awesome if we could do helpers for generics. We can't.
  8. I used paid VMWare workstation for years. About a year ago, I switched to Hyper-V and never regretted doing so.
  9. Then there is this: https://www.microsoft.com/en-us/microsoft-365/blog/2021/04/28/beyond-calibri-finding-microsofts-next-default-font/
  10. 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...
  11. 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 );
  12. 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?
  13. Have you applied the most recent patches?
  14. It is useful to post the actual errors for others to be able to think about the cause.
  15. Lars Fosdal

    "Divided by zero" exception

    What target? Windows, iOS, Android, Linux? 32 or 64 bit? In the IDE or outside?
  16. 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
  17. Lars Fosdal

    Is set a nullable type? (record constraint)

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

    Debugging problem (multithreaded & Intraweb)

    Perhaps @David Millington has a tip?
  19. 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.
  20. 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?
  21. 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?
  22. 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.
  23. Lars Fosdal

    Several F2084 Internal Error on Delphi 10.4.2

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

    Two new 10.4.2 Patches released

    Make that three patches.
×