ios学习记录 day37 UI13中级数据持久化(数据库)

关系数据库:增删改查

insert into..表明(列名)...values...(内容)...

update.....set.....where........

delete from......where.....

select * from.....where.....

 

//创建一个表 people(列名 类型,列名 类型); 一定要;结尾

create table people (stuid int,stuname text);

 

ios学习记录 day37 UI13中级数据持久化(数据库),布布扣,bubuko.com

ios学习记录 day37 UI13中级数据持久化(数据库)

上一篇:Android 最近的一些新的功能


下一篇:iOS NSNotification的使用