-
DescriptionCreating variable and executing SELECT statement with variable and SQL executes just fine. But if I scroll down past the 200 lines new SQL is executed which returns error: And this error is displayed where data were displayed before. So not only I have got an error, but also data are not visible anymore. DBeaver VersionCommunity Edition 24.3.5 Operating SystemWindows 11 Database and driver
Steps to reproduce
There are actually two issues: Additional contextIf I increase row limit to e.g. 300, now error appears after 300 row is scrolled down. I don't know how this another really works. Just assumption: If step c) is commented out and re-executing the statements and scroll down and now SQL is displayed past the 200 rows. I don't know if this works as designed (I hope not), but at least error message should not override the data in SQL result. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You're dropping a variable right after the select query is executed. Why? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
You're dropping a variable right after the select query is executed. Why?
To fetch more rows, DBeaver executes the query that returned the result set - it's only the select. But the variable is dropped. So, select can't be correctly executed anymore.