Symbol-Separator for the long SQL-text's
Open
x:mssql
xf:sql execution
- Dominant language
- Java
- Stars
- 51.8k
- Forks
- 4.4k
- Avg merge
- 3d 13h
- Merged PRs (30d)
- 183
Description
Problem: in the SQL editor, I run the SQL script for my DBMS (not MySQL):
----
create or replace procedure get_popular_persons3(pers_gender IN varchar(1),
up boolean, result_str out varchar(4000))
AS
pers_fname varchar(100);
pers_lname varchar(100);
pers_age integer;
BEGIN
IF up then
result_str := '';
END IF;
END;
-------
and sql-server result error, because the "DBeaver SQL Editor" transmits an incomplete paragraph. Transmits only text from first string to ";"-symbol.To work correctly, I have to select the block I need, which is not convenient.
Is it possible to configure the separator character to send SQL text in blocks?
Thx.
Contributor guide
Assessment
This issue has not been assessed yet.