在使用Mysql 的时候,需要使用ODBC数据源的方式来连接mysql,所以常常需要用到免安装的驱动,自己参考官网的脚本,

修改了一个实用点的脚本,放出来大家一起分享:

安装mysql odbc 5.1 Driver

  1. @ECHO OFF
  2. SET installdir=none
  3. IF EXIST %windir%/system/nul   SET installdir=%windir%/system
  4. IF EXIST %windir%/system32/nul SET installdir=%windir%/system32
  5. IF %installdir%==none GOTO :doError5
  6. IF EXIST %installdir%/myodbc-installer.exe GOTO :doError4
  7. REM ****
  8. REM * Find out the bin/lib directory, or use default
  9. REM ****
  10. SET libdir=lib
  11. SET bindir=bin
  12. IF EXIST lib/release/myodbc5.lib         SET libdir=lib/release
  13. IF EXIST lib/relwithdebinfo/myodbc5.lib  SET libdir=lib/relwithdebinfo
  14. IF EXIST bin/release/myodbc-installer.exe        SET bindir=bin/release
  15. IF EXIST bin/relwithdebinfo/myodbc-installer.exe SET bindir=bin/relwithdebinfo
  16. REM ****
  17. REM * Copying myodbc libraries and executables to install dir...
  18. REM ****
  19. ECHO Copying installation files
  20. IF NOT EXIST %libdir%/myodbc5.lib  GOTO :doError2
  21. IF NOT EXIST %libdir%/myodbc5S.lib GOTO :doError2
  22. IF NOT EXIST %bindir%/myodbc-installer.exe GOTO :doError2
  23. copy %libdir%/myodbc5S.dll %installdir%
  24. copy %libdir%/myodbc5S.lib %installdir%
  25. copy %libdir%/myodbc5.dll  %installdir%
  26. copy %libdir%/myodbc5.lib  %installdir%
  27. copy %bindir%/myodbc-installer.exe      %installdir%
  28. copy doc/*.hlp             %installdir%
  29. REM ****
  30. REM * Registering driver...
  31. REM *
  32. REM * We can do this with myodbc-installer.exe or the MS Windows ODBCConf.exe. It
  33. REM * may be safer to use the ODBCConf.exe when we think about such things
  34. REM * as 64bit windows.
  35. REM ****
  36. ECHO Registering driver
  37. myodbc-installer -d -a -n "MySQL ODBC 5.1 Driver" -t "DRIVER=myodbc5.dll;SETUP=myodbc5S.dll"
  38. ECHO "+-----------------------------------------------------+"
  39. ECHO "| DONE                                                |"
  40. ECHO "+-----------------------------------------------------+"
  41. ECHO "|                                                     |"
  42. ECHO "| Hopefully things went well; the Connector/ODBC      |"
  43. ECHO "| files have been copied to the system directory      |"
  44. ECHO "| and the driver has been registered.                 |"
  45. ECHO "|                                                     |"
  46. ECHO "| Connector/ODBC is ready to use.                     |"
  47. ECHO "|                                                     |"
  48. ECHO "| The most common thing to do next is to go to the    |"
  49. ECHO "| Control Panel and find the ODBC Administrator -     |"
  50. ECHO "| then use it to create a Data Source Name (DSN)      |"
  51. ECHO "| so you (and your application) can connect to a      |"
  52. ECHO "| MySQL server.                                       |"
  53. ECHO "|                                                     |"
  54. ECHO "+-----------------------------------------------------+"
  55. EXIT /B 0
  56. :doError2
  57. ECHO "+-----------------------------------------------------+"
  58. ECHO "| ERROR                                               |"
  59. ECHO "+-----------------------------------------------------+"
  60. ECHO "|                                                     |"
  61. ECHO "| Connector/ODBC not built.                           |"
  62. ECHO "|                                                     |"
  63. ECHO "+-----------------------------------------------------+"
  64. PAUSE
  65. EXIT /B 1
  66. :doError4
  67. ECHO "+-----------------------------------------------------+"
  68. ECHO "| ERROR                                               |"
  69. ECHO "+-----------------------------------------------------+"
  70. ECHO "|                                                     |"
  71. ECHO "| Existing Connector/ODBC installed. Request ignored. |"
  72. ECHO "|                                                     |"
  73. ECHO "+-----------------------------------------------------+"
  74. PAUSE
  75. EXIT /B 1
  76. :doError5
  77. ECHO "+-----------------------------------------------------+"
  78. ECHO "| ERROR                                               |"
  79. ECHO "+-----------------------------------------------------+"
  80. ECHO "|                                                     |"
  81. ECHO "| Can't find the Windows system directory             |"
  82. ECHO "|                                                     |"
  83. ECHO "+-----------------------------------------------------+"
  84. PAUSE
  85. EXIT /B 1

卸载部分

  1. @ECHO OFF
  2. REM #########################################################
  3. REM
  4. REM /brief  Uninstall myodbc.
  5. REM
  6. REM         This exists for those working with the Windows source
  7. REM         distribution.
  8. REM
  9. REM         Use this to remove the driver and supporting files
  10. REM         from the system directory and deregister the driver.
  11. REM
  12. REM /sa     README.win
  13. REM
  14. REM #########################################################
  15. SET installdir=none
  16. IF EXIST %windir%/system/nul   SET installdir=%windir%/system
  17. IF EXIST %windir%/system32/nul SET installdir=%windir%/system32
  18. IF %installdir%==none GOTO :doError4
  19. IF NOT EXIST %installdir%/myodbc-installer.exe GOTO doError2
  20. REM ****
  21. REM * Deregistering driver...
  22. REM ****
  23. myodbc-installer -d -r -n "MySQL ODBC 5.1 Driver"
  24. REM ****
  25. REM * Removing files...
  26. REM ****
  27. del /Q /F %installdir%/myodbc5S.dll
  28. del /Q /F %installdir%/myodbc5S.lib
  29. del /Q /F %installdir%/myodbc5.dll
  30. del /Q /F %installdir%/myodbc5.lib
  31. del /Q /F %installdir%/myodbc-installer.exe
  32. del /Q /F %installdir%/myodbc3*.hlp
  33. ECHO "+-----------------------------------------------------+"
  34. ECHO "| DONE                                                |"
  35. ECHO "+-----------------------------------------------------+"
  36. ECHO "|                                                     |"
  37. ECHO "| Hopefully things went well; the Connector/ODBC      |"
  38. ECHO "| files have been removed from the system directory   |"
  39. ECHO "| and the driver has been deregistered.               |"
  40. ECHO "|                                                     |"
  41. ECHO "+-----------------------------------------------------+"
  42. EXIT /B 0
  43. :doError2
  44. ECHO "+-----------------------------------------------------+"
  45. ECHO "| ERROR                                               |"
  46. ECHO "+-----------------------------------------------------+"
  47. ECHO "|                                                     |"
  48. ECHO "| Connector/ODBC does not appear to be installed.     |"
  49. ECHO "|                                                     |"
  50. ECHO "+-----------------------------------------------------+"
  51. PAUSE
  52. EXIT /B 1
  53. :doError4
  54. ECHO "+-----------------------------------------------------+"
  55. ECHO "| ERROR                                               |"
  56. ECHO "+-----------------------------------------------------+"
  57. ECHO "|                                                     |"
  58. ECHO "| Can't find the Windows system directory             |"
  59. ECHO "|                                                     |"
  60. ECHO "+-----------------------------------------------------+"
  61. PAUSE
  62. EXIT /B 1

关键部分都带有注释,如有问题欢迎大家一起讨论。

同时附已经做好的mysql odbc 5.1 Driver免安装包

mysql odbc 5.1 Driver

http://blog.csdn.net/blpluto/article/details/5677487

Mysql ODBC 5.1 Driver免安装脚本的更多相关文章

  1. MySQL ODBC 3.51 Driver - Access Denied

    MySQL ODBC 3.51 Driver - Access Denied   同事反馈在应用服务器上配置MySQL ODBC 3.51 Drive时,测试连接MySQL数据库时报下面错误: ERR ...

  2. 【MYSQL】mysql-5.6.19-win32免安装版本配置方法

    [MYSQL]mysql-5.6.19-win32免安装版本配置方法 1.文件下载网站(http://dev.mysql.com/downloads/): 具体下载地址:http://211.136. ...

  3. mysql 自动备份和nginx自动安装脚本

    一.自动备份Mysql脚本: 如下脚本为mysql自动备份脚本,仅供参考,可以根据实际情况修改. #!/bin/sh #auto backup mysql #wugk #Define PATH定义变量 ...

  4. 新版本MySQL Server 5.7的免安装版本设置

    今天重新配置电脑,安装java开发运行的相关环境,在安装mysql的过程中,遇到了一些问题. 因为在网站上下载的是免安装版本的mysql 5.7 ,所以在安装过程中只需要解压缩zip的压缩包即可. 之 ...

  5. Mysql在windows下的免安装配置步骤和重新安装的步骤

    windows下mysql免安装配置 1. 下载mysql免安装压缩包 下载mysql-5.6.22-winx64.zip 解压到本地D:\mysql-5.6.22-winx64 2. 修改配置文件 ...

  6. Mysql 5.7 for windows 免安装版(解压版)安装和配置

    网上写的不近详细,这里重新整理下. 准备: 1.windows操作系统 2.mysql 的解压版压缩文件 第一步: 解压mysql的压缩包到你的安装目录,因为是虚拟机,这里我就安装在C盘下:C:\my ...

  7. MySql 5.7.20版本免安装版配置过程

    下载地址为: https://dev.mysql.com/downloads/mysql/ 最下面根据自己的操作系统选择合适的型号 下载完以后解压缩到自定义的路径.这里注意的是路径中不要存在中文. 解 ...

  8. MySQL Server 5.5.44免安装版配置详解

    转载地址:http://wenku.baidu.com/view/2a8bfe6a25c52cc58bd6beff.html### 一 下载MySQL http://dev.mysql.com/dow ...

  9. windows下mysql免安装版配置(踩过的坑)简记

    下载 从官网(https://dev.mysql.com/downloads/mysql/)下载 这里的免安装版本的,相对来说干净,但是需要自己来配置很多东西. 配置 首先是注册windows的服务. ...

随机推荐

  1. Server是如何完成针对请求的监听、接收与响应1

    Server是如何完成针对请求的监听.接收与响应的[上] Server是ASP .NET Core管道的第一个节点,负责完整请求的监听和接收,最终对请求的响应同样也由它完成.Server是我们对所有实 ...

  2. Eclipse用法和技巧二十三:查看JDK源码

    使用java开发,如果能阅读JDK的经典代码,对自己的水平提高是很有帮助的.笔者在实际工作中总结了两种阅读JDK源码的方式.第一种下载android源代码,直接在android源码代码中,这里的代码虽 ...

  3. 基于visual Studio2013解决面试题之1207堆排序

     题目

  4. BLE简介和Android BLE编程

    一.BLE和BT区别 其实我知道许多程序员不太喜欢阅读除了代码以外的文档,因为有时这些过于冗长的文档对编程并没有更多的好处,有了协议,接口,demo差不多很多人就能写出很好质量的代码了.但其实更深入的 ...

  5. poj3356 AGTC

    Description Let x and y be two strings over some finite alphabet A. We would like to transform x int ...

  6. Silverlight技术调查(4)——完成的调查结果

    原文 Silverlight技术调查(4)——完成的调查结果 客户端使用Silverlight+DXperience,可以在线编辑各种常见文本及富文本文档(doc.docx.rtf.txt.html… ...

  7. 性能测试之LoardRunner 手动关联二

    概述: 1.如果寻找左右边界值 2.关联函数详解 以下是详细介绍 1.如果寻找左右边界值 <以login 为例> Step1.录制两份相同的业务流程的的脚本,输入的数据要相同 Step2. ...

  8. Nginx负载均衡:分布式/热备Web Server的搭建

    Nginx是一款轻量级的Web server/反向代理server及电子邮件(IMAP/POP3)代理server.并在一个BSD-like 协议下发行.由俄罗斯的程序设计师Igor Sysoev所开 ...

  9. mssql 返回表的创建语句

    if OBJECT_ID('sp_create_table_sql','P') is not null drop proc sp_create_table_sql go create proc sp_ ...

  10. ALV 数值列负号前置 (EDIT_MASK应用)

    1.建立自定义函数 浮点数显示FUNCTION conversion_exit_zsign_output.*"---------------------------------------- ...