PL / SQL engine in SQLDeveloper

Does SQLDeveloper have a PL / SQL engine?

+3
source share
6 answers

You can run PL / SQL in SQL Developer the same way you can in SQL * Plus. I would say that the “engine” is in the database, but not in the client.

+10
source

SQLDeveloper is a Java application that connects to your Oracle database schema via JDBC, it does not have or even does not have its own PL / SQL engine.

+3
source

, SQLDeveloper PL/SQL.

Oracle, PL/SQL- OracleDB, / . .

+2

SQL Developer PL/SQL.

PL/SQL BEGIN END,

+1

Oracle Forms Reports PL/SQL. , . PL/SQL .

0

SQLDeveloper is a Java application that acts as a pure JDBC client for an Oracle database; therefore, it is not a PLSQL interpreter (engine) in itself, but if you are interested in where the parsing messages came from in the GUI, it comes with a SQL / PLSQL parser generated in Java using Antlr ( http: // www.antlr.org/about.html ) from custom SQL / PLSQL grammar.

0
source

Source: https://habr.com/ru/post/1775671/


All Articles