博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql在命令行中,指定要连接的数据库?
阅读量:5827 次
发布时间:2019-06-18

本文共 1667 字,大约阅读时间需要 5 分钟。

需求描述

  mysql客户端,可以在登录到mysql数据库时,指定要连接到哪个数据库

  这里进行一个测试。

测试过程:

1.mysql通过-D参数指定连接到test数据库

[mysql@redhat6 scripts]$ mysql -uroot -p -D testEnter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)[mysql@redhat6 scripts]$ mysql -uroot -p -D testEnter password: Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 14Server version: 5.5.57-log MySQL Community Server (GPL)Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> select database();+------------+| database() |+------------+| test       |+------------+1 row in set (0.00 sec)

备注:通过在-D参数后面指定数据库名字,就连接到了test数据库。

2.通过-D参数,连接到test01数据库

[mysql@redhat6 scripts]$ mysql -uroot -p -D test01Enter password: Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 15Server version: 5.5.57-log MySQL Community Server (GPL)Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> select database();+------------+| database() |+------------+| test01     |+------------+1 row in set (0.00 sec)mysql>

备注:通过在-D参数后面指定数据库名字,就连接到了test01数据库。

 

小结:通过-D 参数指明要直接连接到哪个数据库。

 

文档创建时间:2018年3月20日11:37:27

转载于:https://www.cnblogs.com/chuanzhang053/p/8608304.html

你可能感兴趣的文章
CSS网页实例:适合所有项目通用的reset.css
查看>>
js call
查看>>
Android中的Selector
查看>>
C语言代码片段-读写标准输入流
查看>>
Ios 调用Appstore 下载界面 [[UIApplication sharedApplication] openURL
查看>>
旁观者效应”是如何毁掉我们的代码的
查看>>
vim常用命令 vim键盘布局
查看>>
开机黑屏 仅仅显示鼠标 电脑黑屏 仅仅有鼠标 移动 [已成功解决]
查看>>
[转]跟我一起学extjs5(02--建立工程项目)
查看>>
Input Technical Information
查看>>
DB系统预警联系人API
查看>>
tomcat java.net.BindException: Cannot assign requested address 解决方法
查看>>
android批量文件上传(android批量图片上传)
查看>>
Android Intent Action大汇总(转载)
查看>>
Servlet中使用RequestDispatcher调派请求--forware
查看>>
文字排版--字号、颜色(font-size, color)
查看>>
C# 读取JSON
查看>>
一分钟教你知道乐观锁和悲观锁的区别
查看>>
Android 退出app,后台推送的服务也停止了,怎么可以做到不停止后台服务呢?
查看>>
[Node.js] 關於 console.log 的格式化輸出
查看>>