zoukankan      html  css  js  c++  java
  • mysql(或者mariadb)连接工具HeidiSQL

    Some infos around HeidiSQL

    Project website: http://www.heidisql.com/
    Google Code: http://code.google.com/p/heidisql/


    *** What is HeidiSQL?

    HeidiSQL is an easy-to-use interface and a "working-horse" for web-developers
    using the popular MySQL-Database. It allows you to manage and browse your
    databases and tables from an intuitive Windows® interface.

    With HeidiSQL you will also be able to
    * Manage Microsoft SQL Servers, with a reduced feature set
    * Generate nice SQL-exports
    * Synchronize tables between two databases
    * Manage user-privileges
    * Import text-files
    * Export grid-data as CSV, HTML, XML, SQL, LaTeX, Wiki and PHP Array style
    * Browse and edit table-data using a comfortable grid
    * Create and edit tables, views, stored routines, triggers and scheduled events
    * Bulk edit tables (move to db, change engine, collation etc.)
    * Batch-insert ascii or binary files into tables
    * Write queries with customizable syntax-highlighting and code-completion
    * Profile your queries
    * Pretty reformat disordered SQL
    * Monitor and kill client-processes
    * Connect to servers via commandline
    * Find specific text in all tables of all databases of one server
    * Optimize and repair tables in a batch manner
    * And much more


    *** Requirements:

    HeidiSQL runs fine on Windows XP, Vista and 7. Running HeidiSQL on Wine/Linux
    also works fine.

    On Windows 2000 you might run into some "illegal function call into KERNEL.DLL",
    which is caused by the newer libmysql.dll which dropped Win2k support. You can fix
    that by placing an older one into the HeidiSQL directory, overwriting the original:
    http://heidisql.googlecode.com/svn-history/r3106/trunk/out/libmysql.dll

    HeidiSQL does not run on Windows 95/98 or ME, as the Unicode extensions are not
    available on these systems.


    *** Command line switches

    Although HeidiSQL is a pure GUI application, it can be automated for connecting
    and opening files via command line parameters. Parameter names are case sensitive
    and are based on those used by the MySQL command line applications, e.g. mysqldump.

    -d, -description    Session name
    -h, -host           Host name
    -u, -user           User name
    -p, -password       Password
    -P, -port           Port (defaults to 3306 if not given)
    -S, -socket         Socket name (for connecting via named pipe)
    --psettings         Custom filename for portable settings. Ignored if file does not exist.
                        Default filename is "portable_settings.txt"

    Examples:

    * Start over using stored settings from session "xyz":
        c:path oheidisql.exe -d=xyz
        c:path oheidisql.exe -description=xyz

    * Connect with different username or port:
        c:path oheidisql.exe -d=xyz -u=OtherUser
        c:path oheidisql.exe -d=xyz -P=3307

    * Connect to a non-stored session:
        c:path oheidisql.exe -h=localhost -u=root -p=Mypass -P=3307

    * Open multiple .sql files in query tabs:
        c:path oheidisql.exe fileA.sql path ofileB.sql fileC.sql ...

    * Use custom portable settings file:
        c:path oheidisql.exe --psettings=c: empp.txt


    *** HeidiSQL portable:

    If HeidiSQL finds a "portable_settings.txt" (or the custom filename as noted above)
    it starts in portable mode. Which means basically that all settings are restored
    from that file and when exiting stored again into that file.

    When you download the portable zip, that "portable_settings.txt" needs to be manually
    copied from your old directory, overwriting the empty default file.


    *** License:

    HeidiSQL is OpenSource and released under GPL (GNU GENERAL PUBLIC LICENSE).

    Probably HeidiSQL saved you a lot of time and you like it. In this case you may
    make a donation here: http://www.heidisql.com/donate.php


    *** Credits:

    Author: Ansgar Becker

    Former development contributors: David Dindorp, Francisco Ernesto Teixeira

    Sven Lorenz (graphics), Mike Lischke + Timo Tegtmeier (VirtualTreeView, GLPL),
    Mathias Rauen (madExcept), Maël Hörz (SynEdit, MPL), Serhiy Perevoznyk (JumpList),
    Jordan Russell (Inno Setup), Lukas Gebauer (Ararat Synapse), Iztok Kacin
    (Cromis.DirectoryWatch, BSD License), Mark James (Silk icons, Creative Commons 2.5)

    Thanks to Transifex.com for a free translation account, and the following translators:
    David Rodrigues (initiator and Portuguese), Richard van Laak (Dutch),
    Michele Locati (Italian), viskubov (Russian), Francisco Alvarado (Spanish), TiGeR
    (Chinese), Matej Szendi (Czech), jeff.tu (Chinese/Taiwan), Rastislav Janosik
    (Slovak), renaud (French), Hichem BOUKSANI (French), s.d.w. (Korean), Alican
    Çubukçuoğlu (Turkish), MichalDCK (Polish), Florin Chis (Romanian), udariza
    (Indonesian), Januar (Indonesian), Seiji Ogawa (Japanese), Микола Ковбаса
    (Ukrainian), mivzakim (Hebrew), Martin Bedrač (Slovenian), sith (Hungarian),
    Xtreme Power (Norwegian), Sasa Kostic (Serbian), Morne Gouws (Afrikaans)

    1000 thanks to MySQL and MariaDB for great database software

  • 相关阅读:
    Hdfs详解
    HDFS主要特性和体系结构
    HDFS简单入门
    使用docker搭建hadoop分布式集群
    HDFS理论及安装部署
    Android开发之模拟器genymotion安装apk出现错误: Install_failed_invalid_URI
    Android开发之最火的开源框架之一Xutils2详解(摘自开源作者官方介绍详解)
    Java开发之javaEE(java2EE)的介绍,java软件工程师初步阶段知识
    拾色器,可以取出电脑屏幕的任何颜色,ui以及程序员前端等常用软件,文件很小,300K
    Android开发必有功能,更新版本提示,检测是否有新版本更新。下载完成后进行安装。
  • 原文地址:https://www.cnblogs.com/24la/p/HeidiSQL.html
Copyright © 2011-2022 走看看