Jump to content

Attila Kovacs

Members
  • Content Count

    1938
  • Joined

  • Last visited

  • Days Won

    25

Everything posted by Attila Kovacs

  1. Attila Kovacs

    any suggestions on how to "lazy load" a BLOB/CLOB from Oracle DB?

    It's called "Deferred LOB Read" and supported for example by UniDAC.
  2. Attila Kovacs

    Blast from the past: BDE and Win10 W/S

    I would locate the problematic tables and outsource them into a decent DBMS and rewrite the affected parts using 2 concurrent connections to get some peace for the first time. Then I'd not touch it for the next decade.
  3. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    Cool. Is it possible that you have a recursion in your search dir tree? Like for example "Users\xxxxx\AppData\Local\Application Data" points to "Users\xxxxx\AppData\Local".
  4. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    Hahaha, that's why I can't reproduce 😄 Thx for jumping in 😉
  5. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    @Stéphane Wierzbicki Are those 3.6M entrys all these kind of items? Name not found? Are they recurring? Do you have this CPU load on a "real" fresh install too?
  6. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    @Stefan Glienke Can't reproduce. But instead of removing something from the path I've switched to x64 where several things are missing.
  7. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    I understand but please tell me how can I get a page full of "name not found" in procmon? I've it running, what should I do?
  8. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    Where? In c:\vcl? How is the IDE such smart?
  9. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    Maybe I need glasses, it's desired access not denied, but this doesn't explain why are you telling us "fresh install" and why can't bds find anything.
  10. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    Am I the only one who's disturbed seeing a Procmon screenshot with a bunch of NAME NOT FOUND / DENIED ACCESS on C:\VCL etc... directories which are not part of a freshly installed IDE? For what did you start it anyway if you are ignoring the output?
  11. Attila Kovacs

    Pointers are dangerous

    @Uwe Raabe Yes, but no, it does not fit to the shown example.
  12. Attila Kovacs

    Pointers are dangerous

    @Uwe Raabe Or one could just assign the local variable back to its origin. Should work from D1.
  13. Attila Kovacs

    Pointers are dangerous

    *Read: The code used to work by accident.
  14. Attila Kovacs

    Build time with 10.3 almost doubled

    Turn off theming and dump moderntheme260.bpl and re-check. (Alternatively you could disable the compile dialog)
  15. Attila Kovacs

    I'm looking for these menus in the IDE

    @PeterPanettone Maybe your misunderstanding? This is the Navigation toolbar: Not ok?
  16. Attila Kovacs

    Sub req OTA/Experts/whatever

    Hi, Can we have a sub for OTA/Expert development? As for pro's as for hobbyists, for asking for help, sharing ideas, etc.. Greets
  17. Attila Kovacs

    I'm looking for these menus in the IDE

    There must be space on the TEditorNavigationToolbar for that. On the same analogy I put the standard IDE form editing toolbars to the top of the FormDesigner. Where it actually belongs to.
  18. Attila Kovacs

    10.3 Consumes 45% of my CPU

    Did you solve it John? Looks similar to this:
  19. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    Strange. Also, on a fresh windows, Rio installer creates a ...BDS\19.0 registry entry too. It's empty, but this means they have places where the path is still from tokyo.
  20. Attila Kovacs

    Unresponsive IDE and massive memory leaks with RIO

    did you install delphi for all users or for one user? what if you start it as administrator? There are a lot of access denied entrys.
  21. Attila Kovacs

    Releasing memory devoted to arrays

    I'm not sure what are you asking and how should we help blindfolded, but I would do these in first place: move your declarations out to a separate unit if you can, if not, move it somewhere else inside the current unit and check if the same AV raises (eventually declare dummy vars between the arrays) turn on range and overflow checking (1..100 could be tricky) check your class destructors if you have, they are processed at finalization place a breakpoint at the "end." in your dpr and start stepping through and try to understand what happens
  22. Attila Kovacs

    General DB access question -- paging query results

    @Dmitry Arefiev Since you are already here, do you have any Sql Server Schema/Data sync tool in your drawer?
  23. Attila Kovacs

    General DB access question -- paging query results

    ORDER BY x,y,z OFFSET 19900 ROWS FETCH NEXT 100 ROWS ONLY It's also new for me so I don't know the caveats, but it looks interesting/promising. Sql Server 2012+
  24. Attila Kovacs

    Rio has a broken REST Library

    Ok, looks like the coder used this trick to trim the trailing zeroes but didn't count with empty/short headers.
  25. Attila Kovacs

    Rio has a broken REST Library

    I like winapi. There you can get real knowhow by bruteforcing it.
×