MySQL 5.7之后,刚初始化的MySQL实例要求先修改密码。否则会报错: 所以修改下密码就OK: ...
分类:
其他好文 时间:
2018-06-24 21:10:37
阅读次数:
127
1) What is multithreading? Multithreading is a process of executing multiple threads simultaneously. Its main advantage is: Threads share the same add ...
分类:
其他好文 时间:
2018-06-16 23:38:04
阅读次数:
475
Mon Jun 11 21:59:52 2018LNS: Standby redo logfile selected for thread 2 sequence 132997 for destination LOG_ARCHIVE_DEST_10Mon Jun 11 21:59:55 2018Arc ...
分类:
移动开发 时间:
2018-06-12 10:28:07
阅读次数:
488
1、 实例化接口: 某一天,我们想通过反射调用一个类的方法,但发现方法参数中有一个接口,我们都知道接口不能被实例化,这该怎么办呢? 举例: I/TestLib: myTest start executing I/MainActivity: doFail I/MainActivity: doSucc ...
分类:
编程语言 时间:
2018-06-07 11:38:38
阅读次数:
164
今天在 Mac 上安装了 MySQL 5.7 ,启动服务后,输入 mysql -u root -p 后,输入初始密码程,尝试执行 show databases; 报了一个 You must reset your password using ALTER USER statement before e ...
分类:
数据库 时间:
2018-06-01 14:28:35
阅读次数:
253
findById:根据id查询表数据 Executing (default): SELECT "id", "account", "password" FROM "account" AS "account" WHERE "account"."id" = 'test1'; findOne:根据条件查询表 ...
分类:
其他好文 时间:
2018-05-24 16:35:16
阅读次数:
409
1.mysql密码过期 错误描述:You must reset your password using ALTER USER statement before executing this statement. 用cmd登录之后,无论干什么都会报这个错。 解决办法:set password=pass ...
分类:
其他好文 时间:
2018-05-10 17:28:28
阅读次数:
151
mac mysql error You must reset your password using ALTER USER statement before executing this statement. 安装完mysql 之后,登陆以后,不管运行任何命令,总是提示这个 step 1: SET ...
分类:
其他好文 时间:
2018-05-07 10:23:17
阅读次数:
165
线程与进程 线程 线程是操作系统能够进行运算调度的最小单位。它被包含在进程之中,是进程中的实际运作单位。一条线程指的是进程中一个单一顺序的控制流,一个进程中可以并发多个线程,每条线程并行执行不同的任务。 进程 An executing instance of a program is called ...
分类:
编程语言 时间:
2018-05-03 23:32:54
阅读次数:
205
运行sudo apt get update 时Ubuntu 16.04出现: 解决方法: 依次执行 `sudo dpkg i /tmp/appstream_0.9.4 1ubuntu1_amd64.deb /tmp/libappstream3_0.9.4 1ubuntu1_amd64.deb` ...
分类:
移动开发 时间:
2018-03-22 21:25:09
阅读次数:
539