php 調用oracle預存程序代碼(1/3)

來源:互聯網
上載者:User

/*
速度和效率。使用預存程序的速度顯然更快。在效率上,如果應用一次需要做一系列sql操作,則需要往返於php與oracle,不如把該應用直接放到資料庫教程方以減少往返次數,增加效率。但是在internet應用上,速度是極度重要的,所以很有必要使用預存程序
*/

//建立一個test表

create table test (

id number(16) not null,

name varchar2(30) not null,

primary key (id)

);

//插入一條資料

insert into test values (5, 'php/index.html>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/index.html>php代碼:--------------------------------------------------------------------------------


//建立資料庫連接

$user = "scott"; //資料庫使用者名稱

$password = "tiger"; //密碼

$conn_str = "tnsname"; //串連串(cstr : connection_string)

$remote = true //是否遠端連線

首頁 1 2 3 末頁
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.