如何使用DolphinDB Python API检查共享表是否存在?

huangapple go评论73阅读模式
英文:

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").

huangapple
  • 本文由 发表于 2023年6月29日 10:40:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/76577753.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定