How to store JSON in SQLite

后端 未结 1 695
鱼传尺愫
鱼传尺愫 2021-01-05 19:25

I am having issues with storing JSON data to sqlite. This is the code which I am trying to implement right now. The JSON data is not particularly big with only 40 lines in i

1条回答
  •  礼貌的吻别
    2021-01-05 20:02

    To solve this problem you must follow this steps

    1) Create the class which contains properties as per your json data.

    2) Deserialize your json data into your class. ( Mapping of json with class)

    3) Store the values of all properties in that class into database(sqllite) (Mapping of class with database )

    4) ****Save your work*** !

    Done ! Enjoy Jsoning !!

    0 讨论(0)
提交回复
热议问题