13.7.1.10 SET PASSWORD Statement SET PASSWORD [FOR user] auth_option [REPLACE 'current_auth_string'] [RETAIN CURRENT PASSWORD] auth_option: { = 'auth_ ...
分类:
数据库 时间:
2020-03-13 12:53:12
阅读次数:
101
在云服务器上安装上mysql5.7后,登录后报错error:1820 1820的错误就是 You must reset your password using ALTER USER statement before executing this statement. 解释:在执行此语句之前,必须使用 ...
分类:
数据库 时间:
2020-03-12 19:09:06
阅读次数:
58
mybatis使用存储过程 创建存储过程 mysql CREATE DEFINER= @`localhost select_user_count`(out userCount INTEGER,OUT postCount INTEGER) BEGIN Routine body goes here... ...
分类:
其他好文 时间:
2020-03-12 18:33:29
阅读次数:
45
Python3 条件控制 Python 条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块。 可以通过下图来简单了解条件语句的执行过程: 代码执行过程: if 语句 Python中if语句的一般形式如下所示: if condition_1: statement_b ...
分类:
编程语言 时间:
2020-03-12 10:00:56
阅读次数:
70
教学班级:周三上午三四节 项目地址:https://github.com/875571216/ PSP表格 |psp2.1|Personal Software Process Stages|预估耗时(分钟)|实际耗时(分钟)| | : :| : : | : : | : : | |Planning|计 ...
分类:
其他好文 时间:
2020-03-10 14:16:44
阅读次数:
48
Eclipse快速补全行末分号 Eclipse快捷键跳到行末补全分号 Eclipse快速结束当前语句(在行末加上分号,就是当前语句结束) Intellij IDEA 里是有快速补全分号的功能(快捷键:Complete Current Statement)的 用惯了这个功能,发现Eclipse里没有, ...
分类:
系统相关 时间:
2020-03-09 18:02:09
阅读次数:
109
错误提示:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.ibaiqi.gather.dao.RecruitGatherDao.listRecruitGathers 1:appl ...
分类:
编程语言 时间:
2020-03-06 22:23:27
阅读次数:
102
使用while循环 只要表达式的值为true,那么while循环就可以重复执行部分代码。 一般形式: while (expression) statement; 如果expression的值为false,则程序转到循环后面的语句。如果为true,则执行statement。整个过程一直持续到expre ...
分类:
其他好文 时间:
2020-03-03 01:10:01
阅读次数:
74
Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.40-log MySQL Community ...
分类:
数据库 时间:
2020-03-02 20:56:53
阅读次数:
80
一、用户名密码都正确的情况下被登录拦截器拦截 控制台报错:org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'com ...
分类:
编程语言 时间:
2020-03-02 16:25:09
阅读次数:
89