Home > Database > Mysql Tutorial > body text

在Ubuntu下为MySQL添加ODBC驱动

WBOY
Release: 2016-06-07 16:53:55
Original
1424 people have browsed it

学过Web开发的人应该都知道ODBC,这个微软自创的数据库连接方法使得在Windows下让程序连接数据库非常容易,比如Java的ODBC连

    学过Web开发的人应该都知道ODBC,这个微软自创的数据库连接方法使得在Windows下让程序连接数据库非常容易,,比如Java的ODBC连接MSSQL、Access等等。如果要开发一个跨平台跨数据库的程序,ODBC连接数据库就是一个不错的选择,只是在Linux并不像在Windows下一样创建ODBC连接那么容易。这篇文章就是准备讲如何在Ubuntu下为MySQL添加ODBC驱动,使得在Ubuntu下也能使用ODBC连接数据库。

  让Ubuntu也可以创建ODBC连接是依靠一个开源项目叫做iODBC实现的,这个iODBC就是为了让Unix体系的系统也能使用ODBC连接,iODBC就是ODBC的开源实现。经过测试在Ubuntu 8.04和Ubuntu 8.10下均可正常工作。

  首先要有MySQL,如果还未安装,一句话安装命令:

  $sudo apt-get install mysql-client mysql-server

  安装iODBC的驱动管理器(GTK编写的前端界面):

  $sudo apt-get install iodbc

  安装MySQL的ODCB连接器:

  $sudo apt-get install libmydobc

  启动iODBC:

  $sudo iodbcadm-gtk

  看到这个界面应该感到很熟悉了吧,几乎和Windows下的ODBC连接设置界面一模一样。

在Ubuntu下为MySQL添加ODBC驱动

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!