python-api与DolphinDB的server端建立连接时出现问题?

我用python-api连接dolphindb,读取数据库时报错了,我的代码如下:

import dolphindb as ddb
s = ddb.session()
s.connect("localhost", 24115,"admin", "123456")
x = s.loadTable(tableName="pt",dbPath="dfs://db1")

数据库和表都是存在的,在DolphinDB的GUI上都能查到。
但是报出下面的错误:

C:\Users\test\anaconda3\lib\site-packages\dolphindb\session.py:69: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray
  return self.cpp.run(script, *args)

请问是哪里不对?

阅读 2.3k
1 个回答

这个警告应该是在执行下面的语句时报的:

x = s.loadTable(tableName="pt",dbPath="dfs://db1")

问题应该是numpy版本过高导致的Warning,不影响正常功能,降低numpy版本就可以消除这个警告。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
101 新手上路
子站问答
访问
宣传栏