You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Session session = pool.getSession("admin", "*****", false);
session.execute("use friend_chain;fetch prop on user \"1000003127\" ;");
会提示No space selected,必须将切换图空间和查询语句分开才行,如下:
Session session = pool.getSession("admin", "*****", false);
session.execute("use friend_chain");
session.execute("fetch prop on user \"1000003127\" ;");
但是使用root用户(God角色)是没问题的。
麻烦看下这个问题,毕竟执行两次execute会增加网络延迟的
The text was updated successfully, but these errors were encountered:
Jabinst
changed the title
执行session.execute时,普通用户“use ${space}”语句和其他查询语句一起执行
执行session.execute时,普通用户“use ${space}”语句和其他查询语句一起执行提示“No space selected”
Jun 28, 2021
我在数据库创建了个用户admin,授权了Admin角色
执行
会提示No space selected,必须将切换图空间和查询语句分开才行,如下:
但是使用root用户(God角色)是没问题的。
麻烦看下这个问题,毕竟执行两次execute会增加网络延迟的
The text was updated successfully, but these errors were encountered: