Extending kdb other then C

I searching about extending kdb+. and found that there is a way to extend with C only.  m wondering if we can extend kdb+ any other language. something like python, java or dotNet. 

does anybody have extended kdb+ with any of above languages. or any idea for extending with these languages. 

many thanks in advance. 

 

Yes. Just use C to embed whatever you like (Python, R, Java…)

Pe 18 nov. 2015 16:14, “Jhoonjhar Singh Jodha” <jhoonjhar@gmail.com> a scris:

I searching about extending kdb+. and found that there is a way to extend with C only.  m wondering if we can extend kdb+ any other language. something like python, java or dotNet. 

does anybody have extended kdb+ with any of above languages. or any idea for extending with these languages. 

many thanks in advance. 

 


Submitted via Google Groups

You might find this link http://code.kx.com/wiki/Cookbook useful. A section “kdb+ foreign interfaces” has useful information on how to integrate kdb+ with different langages/platforms.

I’m wondering if we can extend kdb+ any other language. something like python.

If you have pyq <pyq.enlnt.com> installed, you can do the following in your q session:

q)p)from pyq import q

q)p)def f(x,y): return x + y

q)p)q.f = f

q)f(1;2)