
数据库
*远方
这个作者很懒,什么都没留下…
展开
-
MySQL启动方法
使用mysql数据库第一步是启动MySQL数据库,这里介绍两种方法 一: 打开任务管理器,点击服务,找到MySQL,单击右键,选择启动 二: 以管理员身份启动命令窗口,输入以下代码: 启动代码:net start mysql 关闭代码:net stop mysql ...原创 2019-09-28 16:04:23 · 561 阅读 · 0 评论 -
JBDC驱动下载及Eclipse连接方法
JBDC驱动下载及Eclipse连接方法 工具 mysql-connector-java-8.0.17.jar eclipse mysql-8.0.17 1、下载驱动 网盘地址 https://pan.baidu.com/s/10_tA1ZMoPCSTv-_gMAycyw 提取码:4yrs 官网地址 https://dev.mysql.com/downloads/c...原创 2019-09-28 16:24:39 · 556 阅读 · 0 评论 -
JDBC中The server time zone value '?й???????' is unrecognized ...... 的错误
在使用JDBC是会出现 The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configurati...原创 2019-09-28 16:33:20 · 4416 阅读 · 3 评论 -
新版本MySQl修改密码提示语法错误解决办法
安装新版本的MySQL 后用下面的语句修改密码会提示错误 set password for root@localhost = password('123'); 具体错误如下: ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your...原创 2019-09-29 12:58:54 · 5688 阅读 · 7 评论