sbjsonwrite 组成json串的时候,只能处理objective-c的内建类型,所以当你自己定义的数据结构需要写成json串的时候,需要注意。当然如果非内建类型需要写进json串里面,需要格式化,自己的数据机构可以有一个formatter的方法,专门提供。
好久没用数据库了,今天用起来赶脚好费劲啊,所以必须记下来。
步骤:
1:打开数据库
2:建表(必须的)create table xxx if not exists (id int primary key,name text,age int)
3:插入 inster into xxx (id,name,age ) values (%d,'%@',%d)
4:update update xxx age = 10 where id = 10
5:删除 delete from xxx where id = 10
需要注意的这里的自定义最短最好用宏来表示,因为很多地方要用到,还需要注意顺序,所以勇表示清楚的宏定义,代码的可阅读性大大提高,出错几率降低。
原文链接:https://www.f2er.com/sqlite/201995.html