摘要: 修改删除表 修改 -- 修改表名:ALTER TABLE 旧表名 RENAME AS 新表名 ALTER TABLE teacher RENAME AS teacher1 -- 增加表的字段: ALTER TABLE 表名 ADD 字段名 列属性 ALTER TABLE teacher1 ADD a 阅读全文
posted @ 2021-10-27 13:50 注意隐翅虫 阅读(35) 评论(0) 推荐(0)
摘要: qt 显式链接 dll库 QSerial QTCPSocket 对象冲突问题 公司的项目需要导入多个dll库,其中都用到了串口和tcp通信,最后问题解决说到底还是自己对显式链接的不熟悉导致,在这个点上卡了很久,希望遇到和我一样问题的朋友们可以快速解决。 在调用QLibrary的第二步,resolve 阅读全文
posted @ 2021-10-26 13:55 注意隐翅虫 阅读(270) 评论(0) 推荐(0)
摘要: 数据库的列类型 数值 tinyint 十分小的数据 1个字节 smallint 较小的数据 2个字节 mediumint 中等大小的数据 3个字节 int 标准的整数 4个字节 常用的 bigint 较大的数据 8个字节 float 浮点数 4个字节 double 浮点数 8个字节 decimal 阅读全文
posted @ 2021-10-20 15:11 注意隐翅虫 阅读(44) 评论(0) 推荐(0)
摘要: mysql -uroot -proot --连接数据库 update mysql.user set authentication_string=password('123456') where user='root' and Host = 'localhost'; --修改用户密码 flush pr 阅读全文
posted @ 2021-10-20 14:37 注意隐翅虫 阅读(43) 评论(0) 推荐(0)
摘要: 什么是数据库 数据库(DB,DataBase) 概念:数据仓库,软件,安装在操作系统(windows,linux,mac......)之上,SQL,可以存储大量的数据。500万! 作用:存储数据,管理数据 数据库分类 关系型数据库: MySQL,Oracle,Sql Server,DB2,SQLit 阅读全文
posted @ 2021-10-18 11:35 注意隐翅虫 阅读(26) 评论(0) 推荐(0)
摘要: 数据类型 基本数据类型 整数类型 整数类型 byte:占1个字节范围:-128~127 short: 占2个字节范围:-32768~32767 int:占4个字节范围:-2147483648~2147483647 long:占8个字节范围:-9223372036854775808~922337203 阅读全文
posted @ 2021-09-29 11:38 注意隐翅虫 阅读(103) 评论(0) 推荐(0)
摘要: public class Demo01 { public static void main(String[] args) { // 二元运算符 //ctrl + d :复制当前行到下一行 int a = 10; int b = 20; int c = 25; int d = 25; System.o 阅读全文
posted @ 2021-02-03 18:42 注意隐翅虫 阅读(68) 评论(0) 推荐(0)
摘要: public class Demo05 { public static void main(String[] args) { int i = 128; double b = i;//内存溢出 //强制转换 (类型)变量名 高--低 //自动转换 低--高 System.out.println(i); 阅读全文
posted @ 2021-01-24 22:21 注意隐翅虫 阅读(62) 评论(0) 推荐(0)
摘要: public class Demo03 { public static void main(String[] args) { //整数拓展: 进制 二进制0b 十进制 八进制0 十六进制0x int i = 10; int i2 = 010;//八进制0 int i3 = 0x10;//十六进制0x 阅读全文
posted @ 2021-01-24 21:45 注意隐翅虫 阅读(63) 评论(0) 推荐(0)
摘要: Markdown学习 标题 三级标题 四级标题 字体 Hello,World! Hello,World! Hello,World! Hello,World! 引用 ">" + "空格" 选择狂神说Java,走向人生巅峰 分割线 " " "***" 图片 "!" + "[图片名字]" +"(图片url 阅读全文
posted @ 2021-01-21 09:39 注意隐翅虫 阅读(45) 评论(0) 推荐(0)