1

I have this line of code:

loadedFunc: `:mylib 2:(`myfunc;1)

so from the kdb/q reference., it means loading "my func", which has one argument from the dynamic library with name mylib .

Where is the path can I locate this physical library of mylib? I don't see any path specified elsewhere..

Thomas Smyth - Treliant
  • 4,993
  • 6
  • 25
  • 36
CuriousMind
  • 15,168
  • 20
  • 82
  • 120

1 Answers1

1

The default path is set as mentioned here

It will attempt to load from the current working directory (as \pwd ) first.

If it doesn't find the appropriate library there, then it will attempt to load from the $QHOME/[installationType] directory (so C:/q/w32 by default for Windows 32bit, etc.)

Thomas Smyth - Treliant
  • 4,993
  • 6
  • 25
  • 36
Paul Kerrigan
  • 465
  • 5
  • 12