07 2018 档案
摘要:C++知识图谱,主要描述C++的特点,与C不同之处,不涉及指针、文件读写
阅读全文
摘要:1、TableWidget类 1.1、 表格属性设置 1.1.1设置行列属性 //设置行列均分 tableWidget->horizontalHeader()->setStretchLastSection(true); //就是这个地方 tableWidget->horizontalHeader()
阅读全文
摘要:创建数据库 sqlite3.exe 数据库名字.db 创建表格 create table 表名 (表名 字段类型,表名 字段类型,......) 查看数据库 .databases 查看表名 .tables 查看表的字段 .schema 表名 查看表中数据: .header on.mode colum
阅读全文