用PHP調用Oracle預存程序的方法

來源:互聯網
上載者:User

但是使用預存程序至少有兩個最明顯的優點:速度和效率。使用預存程序的速度顯然更快。在效率上,如果應用一次需要做一系列sql操作,則需要往返於php與oracle,不如把該應用直接放到資料庫方以減少往返次數,增加效率。但是在internet應用上,速度是極度重要的,所以很有必要使用預存程序。偶也是使用php調用預存程序不久,做了下面這個列子。
  代碼 複製代碼 代碼如下:  //建立一個test表
  create table test (
  id number(16) not null,
  name varchar2(30) not null,
  primary key (id)
  );
  //插入一條資料
  insert into test values (5, 'php_book');
  //建立一個預存程序
  create or replace procedure proc_test (
  p_id in out number,
  p_name out varchar2
  ) as
  begin
  select name into p_name
  from test
  where id = 5;
  end proc_test;

  php代碼  複製代碼 代碼如下:<?php
  //建立資料庫連接
  $user = "scott"; //資料庫使用者名稱
  $password = "tiger"; //密碼
  $conn_str = "tnsname"; //串連串(cstr : connection_string)
  $remote = true //是否遠端連線
  if ($remote) {
  $conn = ocilogon($user, $password, $conn_str);
  }
  else {
  $conn = ocilogon($user, $password);
  }
  //設定綁定
  $id = 5; //準備用以綁定的php變數 id
  $name = ""; //準備用以綁定的php變數 name
  /** 調用預存程序的sql語句(sql_sp : sql_storeprocedure)
  * 文法:
  * begin 預存程序名([[:]參數]); end;
  * 加上冒號表示該參數是一個位置
  **/
  $sql_sp = "begin proc_test(:id, :name); end;";
  //parse
  $stmt = ociparse($conn, $sql_sp);
  //執行綁定
  ocibindbyname($stmt, ":id", $id, 16); //參數說明:綁定php變數$id到位置:id,並設定綁定長度16位
  ocibindbyname($stmt, ":name", $name, 30);
  //execute
  ociexecute($stmt);
  //結果
  echo "name is : $name<br>";
  ?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.