Call PL/SQL procedure from Perl - DBI

Ask a Question related to PERL Miscellaneous, Design and Development.

  1. #1

    Default Call PL/SQL procedure from Perl - DBI

    Hi,

    How I can call PL/SQL store procedure from Perl - DBI script?

    Thanks in advance,
    Alex
    Sashafay Guest

  2. Similar Questions and Discussions

    1. Stored Procedure call using MSSQL::DBLIB
      I'm trying to call a stored procedure from a perl script using the MSSQL::DBLIB module. My stored procedure requires three parameters (date, id #,...
    2. asp to call Oracle stored procedure
      Here is the ASP code that has problem: ADODB.Parameters error Parameter object is improperly defined... Inconsistent or imcomplete information...
    3. Asp using the Oracle procedure call error
      My system is on a NT4 (w/SP6a) running IIS 4. I am developing a page that query one record from my Oracle DB 8.1.6 on a separate machine. I am...
    4. the SQL1131N error when I call a stored procedure
      I write my stored procedure by embedding SQL statements in C. I have successfully builded the stored procedure by execute the command "bldsrv csp...
    5. remote call procedure call failed
      Also, it says error 1726 "remote call procedure call failed" Help, Unable to save username and password in XP Home edition. It allows me to...
  3. #2

    Default Re: Call PL/SQL procedure from Perl - DBI

    Sashafay wrote:
    > Hi,
    >
    > How I can call PL/SQL store procedure from Perl - DBI script?
    >
    $dbh->do("begin procedure_call; end;");

    Actually, you can access procedure parameters (even in/out ones) and
    read dbms_output. It is documented in the DBD::Oracle POD.

    Joachim

    Joachim Pense Guest

  4. #3

    Default Re: Call PL/SQL procedure from Perl - DBI

    Ron Reidy <r_reidy@comcast.net> wrote in message news:<3F5BC057.4040600@comcast.net>...
    > perldoc DBD::Oracle
    >
    > Sashafay wrote:
    > > Hi,
    > >
    > > How I can call PL/SQL store procedure from Perl - DBI script?
    > >
    > > Thanks in advance,
    > > Alex

    Thanks Guys!

    Regards,
    Alex
    Sashafay Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139