How can I insert data by sqlline.bat?
I use class DataX:
public class DataX {
        private Integer key;
        private String value;
        public DataX(int key,String value) {
                this.key=key;
                this.value=value;
        }
        public int getKey() {
                return key;
        }
        public void setKey(int key) {
                this.key=key;
        }
        public String getValue() {
                return value;
        }
        public void setValue(String value) {
                this.value=value;                               
        }
}

and a cache named dtCache: 
IgniteCache<Integer, DataX> dtCache=ignite.getOrCreateCache("dtCache");



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to