上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页
摘要: 1.查看所有数据库容量大小 select table_schema as '数据库', sum(table_rows) as '记录数', sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)', sum(truncate(index_length 阅读全文
posted @ 2021-08-23 10:55 唏嘘- 阅读(1011) 评论(0) 推荐(0)
摘要: 1、information_schema 数据库跟 performance_schema 一样,都是 MySQL 自带的信息数据库。 其中 performance_schema 用于性能分析,而 information_schema 用于存储数据库元数据(关于数据的数据),例如数据库名、表名、列的数 阅读全文
posted @ 2021-08-23 10:24 唏嘘- 阅读(289) 评论(0) 推荐(0)
摘要: 警告信息: WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requ 阅读全文
posted @ 2021-08-17 11:37 唏嘘- 阅读(1038) 评论(0) 推荐(0)
摘要: 报错信息: ### Error querying database. Cause: java.sql.SQLException: Unknown initial character set index '255' received from server. Initial client charac 阅读全文
posted @ 2021-08-17 10:38 唏嘘- 阅读(246) 评论(0) 推荐(0)
摘要: 报错信息: ### Error building SqlSession. ### The error may exist in com/dy/dao/mapping/userDao-mapping.xml ### Cause: org.apache.ibatis.builder.BuilderExc 阅读全文
posted @ 2021-08-17 09:50 唏嘘- 阅读(705) 评论(1) 推荐(1)
摘要: 一、由于导入数据需要有条件,避免点击上传直接就弹出附件选择 html代码 <button type="button" class="layui-btn" id="check"> <i class="layui-icon"></i>导入</button> <button hidden type="b 阅读全文
posted @ 2021-08-16 14:02 唏嘘- 阅读(492) 评论(0) 推荐(0)
摘要: 一、由于导入数据需要有条件,避免点击上传直接就弹出附件选择 html代码 <button type="button" class="layui-btn" id="check"> <i class="layui-icon"></i>导入</button> <button hidden type="b 阅读全文
posted @ 2021-08-16 14:01 唏嘘- 阅读(364) 评论(0) 推荐(0)
摘要: //取到html元素中所设置的属性 value的值, //不能获取动态的如input type="text" 的文本框手动输入的值 $("#Id").attr("value", ""); //针对text,hidden可输入的文本框的value值 $("#Id").val(""); //重置表单所有 阅读全文
posted @ 2021-08-16 11:59 唏嘘- 阅读(1509) 评论(0) 推荐(0)
摘要: 一、数组转集合 //数组转集合 String [] strs = {"12", "13", "14"}; List<String> stringList = Arrays.asList(strs); // stringList.add("16"); 数组转成的集合,不可添加 //asList的返回对 阅读全文
posted @ 2021-08-16 11:20 唏嘘- 阅读(1795) 评论(0) 推荐(0)
摘要: 一、使用模板引擎至少需要四步走: 1.定义模板引擎 2.创建数据模型 3.填充数据到模板中 4.输出文档 二: 1、定义模板: 创建word文档,另存xml 文件(需要注意,存为 2003xml 文件,要不以后生成的word可能会出现office打不开的情况) 2、 直接打开 格式会特变乱,此时需要 阅读全文
posted @ 2021-08-13 16:10 唏嘘- 阅读(416) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页