refi64
New Contributor
since ‎2015.04.08
‎2021.06.17

User Statistics

  • 19 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

This almost always means that the DLL was compiled for a different architecture than kdb+. If you have the 32-bit version of kdb+, then you need to compile a 32-bit DLL. Try changing the amd64 in comprun.bat to amd64_x86.
Does kdb have a GUI library like k2 had?-- Sent from my Android device with K-9 Mail. Please excuse my brevity.
For instance, if a have a string: p:"abc def" I want to remove all the spaces. In k2, I've done this: pm:{~x=" "}'p p:(pm[>pm]?0)#p@>pm In k3, is there a better way? Or is there a better way in k2 that I missed? -- Sent from my Android device with K-...
I have a few questions about using K (not q) in kdb+.Firstly, I know that you can use a slash to go to K mode in the interactive interpreter:ryan@DevPC-LX:~$ qKDB+ 3.2 2015.03.04 Copyright (C) 1993-2015 Kx Systemsl32/ 4()core 5862MB ryan devpc-lx 127...
Hello,I know about the cast function. However, I'm trying to figure out how to go from the ASCII value to a character. Something like Python's chr function:Python 2.7.6 (default, Mar 22 2014, 22:59:56) [GCC 4.8.2] on linux2Type "help", "copyright", "...