Need to compile and execute plsql files from remote machine

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Anand

    Need to compile and execute plsql files from remote machine

    Hi all,

    I have a requirement of - checking the syntax, compiling and executing
    the plsql files (procedures, functions, triggers etc) from a remote
    machine. I use JAVA for development and i had tried using jdbc
    connection.

    CallableStateme nt stmt;
    ::::::::::
    stmt = connection.prep areCall("Begin ... end;"); //Anonymous procedure
    stmt.execute();
    :::

    The above snippet does not give any compilation/syntatical errors. It
    will be better if there is any other means to access the database and
    execute the procedure with all the behaviour of sqlplus. I would
    appreciate any guidence in this regard.

    Thanks in advance.

    Regards,
    Srikanth.R
Working...