Write data to Kx Systems, Inc. kdb+ databases
insert(k,tablename,data)
x = insert(k,tablename,data,sync)
k |
The Kx Systems®, Inc. kdb+ connection object created with |
tablename |
The name of the Kx Systems, Inc. kdb+ |
data |
The data that |
insert(k,tablename,data)
writes the data,
data
, to the Kx Systems, Inc. kdb+ table, tablename
.
x = insert(k,tablename,data,sync)
writes the
data, data
, to the Kx Systems, Inc. kdb+ table, tablename
, synchronously. For asynchronous
calls, enter sync
as 0 (default), and for synchronous calls, enter
sync
as 1.
For the connection to the Kx Systems, Inc. kdb+ database, k
, write data from ACME
to the specified table:
insert(k,'trade',{'`ACME',133.51,250,6.4,'2006.10.24'})