How to insert an Object into DB
Hi Iam new to android.i know insertion of strings into SQlite DB,But i want to insert an Object 开发者_如何学Pythoninto DataBase.Please tell me the way.
you have to map the object into tables and columns or serialize it into a blob.
relational databases don't know anything about objects. it's called 'object-relational impedence mismatch'.
精彩评论