NAME
K::Raw - Low-level Perl bindings for k (aka q, aka kdb, aka kx)
DESCRIPTION
K::Raw
wraps the C library defined by k.h and described here http://code.kx.com/wiki/Cookbook/InterfacingWithC .
SYNOPSIS
use K::Raw;
my $handle = khpu("localhost", $port, "");
k($handle, '4 + 4'); # 8
k($handle, q/"abc"/); # [ 'a', 'b', 'c' ]
k($handle, q/`foo`bar!(1;2)/); # { foo => 1, bar => 2 }
k($handle, q/2012.03.24D12:13:14.15161728/); # '385906394151617280'
kclose($handle);
SUBS
khpu
khpun
k
kclose
SEE ALSO
K, Kx, http://kx.com
REPOSITORY
http://github.com/wjackson/k-perl
AUTHORS
Whitney Jackson <whitney@cpan.org>
COPYRIGHT & LICENSE
Copyright (c) 2011 Whitney Jackson. All rights reserved This program is
free software; you can redistribute it and/or modify it under the same
terms as Perl itself.