英文:
How to check if a shared table exists using DolphinDB Python API?
问题
你知道如何使用DolphinDB Python API检查共享表是否存在吗?例如,如果我想要检查GUI中的共享表中是否存在名为“A20160405”的表,我可以执行existsTable("shared", "A20160405")
吗?
英文:
Does anyone know how to check if a shared table exists using the DolphinDB Python API? For example, if I intend to check if there is a table named “A20160405“ in the Shared Tables in GUI, can I execute existsTable("shared", "A20160405")
?
答案1
得分: 1
目前,没有专门设计的本地/直接接口来执行此操作。您可以使用内置函数 objs
。请参考以下方法:s.run("select * from objs(true) where shared=true")
。
英文:
Currently, there is no native/direct interface designed to do this. You can use the built-in function objs
. Refer to the following method: s.run("select * from objs(true) where shared=true")
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论