我刚刚开始在 10.13.2 上使用 TabPy。我使用了 conda pymysql 包(pymysql 和 PyMySQL-0.8.0-py2.7.egg-info)并将它们放在 anaconda 的站点包中,以便 Tableau 能够连接到数据库、检索数据集和保存在计算字段中。
我最初尝试了 mysql.connector,就像我在 PyCharm 和 CLI 中所做的那样,但 TabPy 使用 anaconda,它没有 mysql 的站点包。
无论如何,它最初连接到 TabPy 服务器,该服务器返回:
An error occurred while communicating with the Predictive Service.
但是,紧随其后的是接下来的两行:
Error processing script
TypeError : %d format: a number is required, not str
我已经对上述错误进行了一些挖掘,并且我尝试过的所有内容都产生了相同的错误。我找到了解决方案,但最后出现了另一个错误。
SCRIPT_REAL("
import pymysql
db = pymysql.connect(
host='localhost',
port='9999',
user='usern',
passwd='passw',
db='someDb'
)
cur = db.cursor()
t1 = int(0)
t2 = datetime.datetime(2018, 2, 1)
sqlStr = 'select distinct APPL_ID, APPL_SUBMIT_DT from APPL_APP where APPL_ACTIVE_FLAG > %d and APPL_SUBMIT_DT >= %d' % (t1, t2)
cur.execute()
for row in cur.fetchall():
print row
db.close()
",
COUNT([Appl Id])
)
我不明白为什么脚本会返回这样的错误,直到我在 PyCharm 中运行它。我的端口号需要是数字而不是字符串。
import pymysql
db = pymysql.connect(
host='localhost',
port=9999,
user='usern',
passwd='passw',
db='someDb'
)
cur = db.cursor()
t1 = int(0)
t2 = (2018-02-01)
sqlStr = 'select distinct APPL_ID, APPL_SUBMIT_DT from APPL_APP where APPL_ACTIVE_FLAG > %d and APPL_SUBMIT_DT >= %d' % (t1, t2)
cur.execute(sqlStr)
for row in cur.fetchall():
print row
db.close()
当然,虽然我可以看到通过 TabPy 服务器在我的终端中返回的所有数据,但它完成了以下操作:
(3957423, datetime.datetime(2018, 2, 27, 15, 30, 16))
(3957424, datetime.datetime(2018, 2, 27, 15, 31))
(3957425, datetime.datetime(2018, 2, 27, 15, 31, 4))
(3957426, datetime.datetime(2018, 2, 27, 15, 31, 55))
(3957428, datetime.datetime(2018, 2, 27, 15, 32, 17))
(3957429, datetime.datetime(2018, 2, 27, 15, 32, 18))
None
ERROR:__main__:{"info": null, "ERROR": "Error running script. No return value"}
这怎么可能?那里显然有数据。