We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to use EDBI query editor with multiple queries like:
INSERT INTO table_name (column1,column2,column3,...) VALUES (foo1,foo2,foo3,...); INSERT INTO table_name (column1,column2,column3,...) VALUES (bar1,bar2,bar3,...); INSERT INTO table_name (column1,column2,column3,...) VALUES (foo4,foo5,foo6,...); INSERT INTO table_name (column1,column2,column3,...) VALUES (bar4,bar5,bar6,...);
Instead one query to evaluate per once in EDBI query editor?
The text was updated successfully, but these errors were encountered:
It is not possible in the current implementation. If the region is activated in query editor, the selected SQL would be executed.
I also need the multiple SQL execution, but the displaying results is little difficult problem, rather than SQL parsing.
Sorry, something went wrong.
What about displaying the result of the latest query?
For example, you have two queries that deletes records. EDBI result window will display the latest stdout from the latest query.
No branches or pull requests
Is it possible to use EDBI query editor with multiple queries like:
Instead one query to evaluate per once in EDBI query editor?
The text was updated successfully, but these errors were encountered: