HashMap demoMap = new HashMap();
demoMap.put("1","Apple");
demoMap.put("1","Orange");
List<HashMap> demo = new ArrayList<HashMap>();
demo.add(demoMap);
Is it possible to store demo object in the db table. So that when I query table using jdbc or any orm I directly get the demo object.