Re: Loading and Fetching the Data using Node js.

2020-02-13 Thread Denis Magda
According to the exception, the field name OrderId is of "long" type in Java and of "double" type in Node.JS (or vice versa). The types of the fields have to be identical. It seems like OrderId is a primitive field and you, probably, should enforce its type to "long" on Node.JS end. Also, check

Re: Loading and Fetching the Data using Node js.

2020-02-13 Thread nithin91
Hi Pasted below the code and error i got.Actually i am trying query an existing cache using node js which is loaded using Cache JDBC Pojo Store in Java.It would be really helpful share me if you have any sample code. PS C:\Users\ngovind\NodeApp> node NodeIgnite.js ERROR: Binary type has

Re: Loading and Fetching the Data using Node js.

2020-02-12 Thread Denis Magda
Hello, Have you tried to create Node.JS classes with a structure similar to Java objects and use them in put/get methods? https://apacheignite.readme.io/docs/nodejs-thin-client-binary-types As for the initial data loading, an efficient API has not been added to the Node.JS yet. Use Java

Loading and Fetching the Data using Node js.

2020-02-11 Thread nithin91
Hi I am new to Apache Ignite.Can someone help me on how to fetch and load the data from ignite cache using node js without using sql field queries option. Cache is loaded using CacheJDBCPOJO Store and the Key and Value types are custom types defined using JAVA.As these classes are defined in