oracle 代碼塊

來源:互聯網
上載者:User

標籤:環境   sql語句   dev   冒號   cep   lang   student   文字   rac   

oracle 的代碼塊模板

declare

  --聲明變數

begin

  --執行商務邏輯

exception

  --異常處理

end;  

--結束

注意:代碼塊每個sql語句結束都要加冒號

eg:

--plsql 代碼塊往資料庫中插入資料

declare
v_id varchar(10):=‘1‘; --聲明字串變數必須帶上長度
v_name varchar(10):=‘張三‘;
v_sex Integer:=1;
v_age Integer:=18;
begin   --begin 執行代碼
insert into a_student values(v_id,v_name,v_sex,v_age);

end;

 

插入資料庫中文亂碼,解決辦法

如果你的plsql沒有設定中文字元集的功能,比如我的plsql developer10就沒有,那可以用設定環境變數的方式解決此問題,在環境變數中添加一個名稱為NLS_LANG值為你oracle字元集(比如SIMPLIFIED CHINESE_CHINA.ZHS16GBK)的系統變數,重啟plsql developer,問題即可解決。

 

oracle 代碼塊

聯繫我們

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