informatica 连接mysql 不显示列表

informatica 连接mysql 不显示列表,第1张

InformaticaMySQLinformatica安装了mysql驱动,在配置数据源时mysql数据库已经测试连通,然而在Designer中sources配置源端数据库连接时,DLL name entry missing...., using EXTODBC.DLL to support MySQL. for native support of mysql make an entry in the .ini file.,

但是如果上图中不输入口令,但是可以看到库里的表。

但是在后面执行workflows时报错:

老是提示连不上mysql数据库,找不到驱动。

在那个配置powrmart.ini文件中原来没有mysql项,后来重做之后有了,不过此项为

mysql=extodbc.dll

安装驱动了,后来证明mysql在workflow里connection中需引用数据源的名称,且数据源应创建于系统

Class.forName("org.gjt.mm.mysql.Driver").newInstance()

String url = "jdbc:mysql://localhost/mysql"

connection = DriverManager.getConnection(url, "username", "password")

statement = connection.createStatement()

String hrappSQL = "CREATE DATABASE hrapp"

statement.executeUpdate(hrappSQL)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7191364.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-02
下一篇 2023-04-02

发表评论

登录后才能评论

评论列表(0条)

保存