通过 vb 脚本连接 Infobright 数据库
Posted
技术标签:
【中文标题】通过 vb 脚本连接 Infobright 数据库【英文标题】:Infobright database connection through vb script 【发布时间】:2013-06-04 06:44:37 【问题描述】:谁能告诉我如何通过 vb 脚本连接 infobright 数据库。我写了一个代码,但它显示一个错误:
provider can not be found.
我写的代码是:
Option Explicit
Dim conn, sqlstr
sqlstr = "SELECT COLLATION_NAME FROM COLLATIONS"
'Database connection info
set Conn = CreateObject("ADODB.connection")
Conn.ConnectionTimeout = 30
Conn.CommandTimeout = 30
conn.open("Provider=Microsoft.Jet.OLEDB.4.0;Database=information_Schema;Username=root;Password=''")
dim showList
Set showList = conn.execute(sqlstr)
while not showList.eof
Wscript.echo "Collation Name:" & showList("COLLATION_NAME")
showList.MoveNext
WEND
conn.close
【问题讨论】:
VBScript & Access MDB - 800A0E7A - "Provider cannot be found. It may not be properly installed" 的可能重复项 【参考方案1】:安装 mysql Connector/ODBC 5.1 并使用如下连接字符串
connString = "Driver=MySQL ODBC 5.1 Driver;Server=ServerAddress;Database=DataBase;User=Username;Password=Password;"
【讨论】:
以上是关于通过 vb 脚本连接 Infobright 数据库的主要内容,如果未能解决你的问题,请参考以下文章
Infobright/MySQL 加载数据 infile 死锁