1

I created a in-memory table "t1" and loaded data into it through DolphinDB Java API. Then I started DolphinDG java GUI, "select * from t1", why "t1" cannot be recognized?

dovish618
  • 156
  • 5

1 Answers1

0

t1 is a local variable in the session created by the Java API connection, which is invisible to other sessions. GUI connection created a new session. If you would like to see t1 across all sessions, please share t1

Davis Zhou
  • 353
  • 4
  • 6