I just created the cache by running the below SQL from SQLLine console CREATE TABLE IF NOT EXISTS TEST_STATS_NAVEEN_NO_VAL ( stats_id VARCHAR, testname VARCHAR, testcityId VARCHAR, PRIMARY KEY (stats_id)) WITH "template=myCacheTemplate, DATA_REGION=persistwarm,CACHE_NAME=TEST_STATS_NAVEEN_NO_VAL";
Since I have not given any value_type, Ignite has created a value for value_type like this "SQL_PUBLIC_TEST_STATS_NAVEEN_NO_VAL_532f9920_b7a2_43de_b6a2_2f45ad8d5c2a" So, when we are doing ignite.binary().builder(), we should exactly pass the same value SQL_PUBLIC_TEST_STATS_NAVEEN_NO_VAL_532f9920_b7a2_43de_b6a2_2f45ad8d5c2a, then only we should be able to retrieve the data inserted thru BinaryAPI from SQL. Thanks -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
