• MySQL 使用笔记


    1. How to export the database of mysql

    • go to command line,  use "CMD"
    • cd C:Program FilesMySQLMySQL Server 5.5in
    • mysqldump -hx.x.x.x(IP) -P3306 -uroot -pxxx DB_NLS > d:/db_nls.sql
    • finish the export, sql file is db_nls.sql

    2. How to import the database of mysql

    • go to command line,  use "CMD"
    • cd C:Program FilesMySQLMySQL Server 5.5in
    • mysql -hx.x.x.x(IP) -uroot -pxxx
    • create a database "test" by mysql workbench
    • mysql> use test
    • mysql> source d:/db_nls.sql
    • finish the import.

         or

    •    mysql -hx.x.x.x(IP) -uroot -pxxx -P3306 db_nls < d:db_nls.sql

    3. How to convert ACCESS database to MySQL

    • use the tool: Access2MySQL
    1. Difference between MySQL and Access
    • 存储转义字符不同。MySQL 需转化字符串 ,“ \ ”to " \\ ", " ' " to " '' ", 而Access 只需转化 " ' "“ '' ”.
     
    4. How to set Mysql support multiple language
    • Modify the my.ini which is located in mysql installed folder 
    • Set "default-character-set =utf8", "character-set-server=utf8" 
    • restart mysql service
    5. How to change the password of  user: root in mysql
    • go to command line,  use "CMD"
    • cd C:Program FilesMySQLMySQL Server 5.5in
    • mysqladmin -uroot -padmin password xxx
  • 相关阅读:
    串口操作
    图片转化成二进制数据、等比缩放
    DSO Framer Control Object 操作word文件
    C#图片存入数据库及其读出显示
    对话框的用法
    C#读取数据库中的表
    将Resource中的图片资源动态绑定到PictureBox中:
    ProgressBar
    C# 操作数据库表和数据库
    操作系统–进程管理
  • 原文地址:https://www.cnblogs.com/sql4me/p/3923763.html
Copyright © 2020-2023  润新知