Dmitry Zakharov
Dmitry Zakharov
I change cursor for the component `RSTA.setCursor(myCursor)`. However this would be overwritten with user CTRL + mouse move (a user wanted to click something while he/she was moving mouse). I...
As a user of c.java, I want to be able to fully understand what object I get from k(). At the moment I can't distinguish strings (char vectors) from functions;...
The bug is inside c.java which parses the result from kdb. If you run GridViewer with the following query ``String query ="get `:test/ set ([] a:til 10)";`` then you get...
**Status quo** I have a RSTA and search panel with a "what" text and "Find" button. I can type in a "what" text and click "Find" button. "Find" button performs...
LocalTime can keep hour only within 00 - 23 interval which is different for kdb. The below code demonstrate the problem ``` c conn = new c("localhost", 10000); System.out.println(conn.k("0N!23:12:34.567")); System.out.println(conn.k("0N!43:12:34.567"));...
The code assumes that authentication data (user:password) are less of 100 bytes and would be read by a single InputStream.read. Here is an echo-like Sample: ``` import com.kx.c; import java.io.IOException;...