是否有为MYSQL数据库(Windows操作系统)创建系统DSN输入,以编程方式通过批处理脚本或任何其他语言静默安装MySQL ODBC驱动程序?
如果无法安装驱动程序,至少自动DSN entery会有所帮助。
谢谢,
答案 0 :(得分:2)
Dim ad
ad = CreateObject("ADODB.Connection") 'create and open ODBC connection
ad.ConnectionString = ("Driver={MySQL ODBC 5.2w Driver};Server=localhost;Database=db;UID=root;PWD=xxxxxx;option=3")
ad.Open()
答案 1 :(得分:0)
在命令行上,使用适当的参数运行odbcconf.exe
。例如
ODBCConf ConfigSysDSN "SQL Server" "DSN=LocalODBCConnection|SERVER=(local)"
for MySQL
ODBCConf ConfigSysDSN "MySQL" "DSN=LocalODBCConnection|SERVER=MySQL_ServerName"