摘要: 1、TableWidget类 1.1、 表格属性设置 1.1.1设置行列属性 //设置行列均分 tableWidget->horizontalHeader()->setStretchLastSection(true); //就是这个地方 tableWidget->horizontalHeader() 阅读全文
posted @ 2018-07-04 14:20 天码丶行满 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 创建数据库 sqlite3.exe 数据库名字.db 创建表格 create table 表名 (表名 字段类型,表名 字段类型,......) 查看数据库 .databases 查看表名 .tables 查看表的字段 .schema 表名 查看表中数据: .header on.mode colum 阅读全文
posted @ 2018-07-04 14:19 天码丶行满 阅读(184) 评论(0) 推荐(0) 编辑