随笔分类 -  数据库

数据库操作
摘要:打开或者创建数据库 执行不返回数据的SQL语句(增、删、改)。 执行更新、删除语句和执行创表、添加语句基本类似,只需更改sql语句即可。) 执行返回数据的SQL语句(查)。 关闭数据库:sqlite3_close_v2(sqlite3* sql) SQLite3 库函数 总结 1.打开数据库 其中: 阅读全文
posted @ 2019-09-01 19:24 南水之源 阅读(578) 评论(0) 推荐(0)
摘要:图由南水之源提供,感谢 流socket 制作总结 原截图如下:按字母顺序排序 asphalt asphalt_bright asphalt_white brightRockOnly broadleaveWithRock desert forest forestMix forestPine grass 阅读全文
posted @ 2019-06-04 18:47 南水之源 阅读(1457) 评论(2) 推荐(0)
摘要:经典语句例子: select * from table1 where 工资>2500 and 工资<3000 //同上 select 姓名 from table1 where 性别='0' and 工资='4000' select * from table1 where not 工资= 3200 s 阅读全文
posted @ 2016-03-18 15:41 南水之源 阅读(365) 评论(0) 推荐(0)