zoukankan      html  css  js  c++  java
  • mysql在命令行中,指定要连接的数据库?

    需求描述

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

      这里进行一个测试。

    测试过程:

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

    [mysql@redhat6 scripts]$ mysql -uroot -p -D test
    Enter password: 
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
    [mysql@redhat6 scripts]$ mysql -uroot -p -D test
    Enter password: 
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 14
    Server 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 its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    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 test01
    Enter password: 
    Welcome to the MySQL monitor.  Commands end with ; or g.
    Your MySQL connection id is 15
    Server 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 its
    affiliates. Other names may be trademarks of their respective
    owners.
    
    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

  • 相关阅读:
    #include "stdafx.h" 错误?
    扩频技术
    求数组中只出现一次的数字(算法)
    1.3一摞烙饼的排序
    嵌套类
    企业级邮件服务软件推荐
    关于Linq To Sql中Detach方法和一个公共基类
    asp.net(c#) 将dbf转换为xls或wps,并将数据的列名改成中文;并判断本机是否安装office2003,2007和wps2007,2010
    一句代码解决IE8兼容问题(兼容性视图)
    asp.net(C#)套用模板操作Excel
  • 原文地址:https://www.cnblogs.com/chuanzhang053/p/8608304.html
Copyright © 2011-2022 走看看