上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: InnoDB:MySQL默认的事务型引擎,也是最重要和使用最广泛的存储引擎。它被设计成为大量的短期事务,短期事务大部分情况下是正常提交的,很少被回滚。InnoDB的性能与自动崩溃恢复的特性,使得它在非事务存储需求中也很流行。除非有非常特别的原因需要使用其他的存储引擎,否则应该优先考虑InnoDB引擎 阅读全文
posted @ 2022-07-25 14:32 九五小庞 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 古之成大事者,不唯有超世之才,坚韧不拔之志,毅必具有坚毅之品格。 腹有坚毅,方能挑战命运。人不应该向命运低头,走出去,不枉活一世。平凡孕育着坚毅,吾辈青年,当挑战命运,砥砺前行,方能赓续我中国精神。 腹有坚毅,方能激发潜力。使我痛苦者必使我坚毅,吾辈青年当激发潜力,勇往直前,方能续写我中华伟业。 腹 阅读全文
posted @ 2022-07-21 13:59 九五小庞 阅读(155) 评论(0) 推荐(0) 编辑
摘要: test字段为ntext类型SQL语句:select * from A where test=’xxx’执行之后会出现:数据类型 ntext 和 varchar 在 equal to 运算符中不兼容的错误信息。是不是值也是ntext类型就行了呢?那把SQL语句该成:select * from A w 阅读全文
posted @ 2022-07-05 09:50 九五小庞 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-07-03 08:31 九五小庞 阅读(4) 评论(0) 推荐(0) 编辑
摘要: public class Demo5 { public static void main(String[] args) { int a=10; int b=20; a+=b; System.out.println("a+"+a); //当前面为String类型时,自动转为Sting System.o 阅读全文
posted @ 2022-07-03 08:24 九五小庞 阅读(45) 评论(0) 推荐(0) 编辑
摘要: public class Demo4 { public static void main(String[] args) { //逻辑运算符的使用 boolean a=true; boolean b=false; System.out.println("a&&b:"+(a&&b)); System.o 阅读全文
posted @ 2022-07-03 08:05 九五小庞 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 修改Mysql数据库默认密码后登陆报 ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061) 注意:当修改Mysql数据库的默认端口号后,在连接数据库的时候,需要加上端口号 mysql -uroot -pjfy 阅读全文
posted @ 2022-06-29 15:58 九五小庞 阅读(121) 评论(0) 推荐(0) 编辑
摘要: public class Demo3 { //静态常量,属于类,值是固定的不可变的 final static double d=123.23; //静态变量,属于类 static int i=1000000; //成员变量,属于实例 String string,string1; String str 阅读全文
posted @ 2022-06-27 22:46 九五小庞 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 代码示例: public class Demo2 { public static void main(String[] args) { //类型转换的练习 /** * @param 类型转换从低到高 byte ,short(char),int,long,float,double */ byte b 阅读全文
posted @ 2022-06-27 21:27 九五小庞 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 练习代码: 1 public class Demo1 { 2 public static void main(String[] args) { 3 System.out.println("字符类型练习"); 4 //byte占一个字节范围-128-127 5 byte mnu=-128; 6 //s 阅读全文
posted @ 2022-06-27 21:00 九五小庞 阅读(28) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页