马上要做一个项目,用PL/SQL,知之甚少,网上搜了一下,弄得人眼花,请大家推荐一下.谢谢!!

解决方案 »

  1.   

    PLSQL程序设计(很不錯的)
    http://www.cnoug.org/viewthread.php?tid=19691先注冊一下cnoug( ORACLE技术中国用户讨论组 )的帳號就可以了
      

  2.   

    谢谢了!这个是机械的那本书吧!还有PL/SQL版本差异大不大,这个好像是8i的..
      

  3.   

    PLSQL User's Guide and Reference:
    http://www.newebug.com/ebook/oracle/404.shtml
      

  4.   

    有没有pl/sql web 开发方面的..
      

  5.   

    pl/sql是用来操作数据库的,如果用于开发web应用恐怕有点勉为其难,不过倒是可以写一些供调用的存储过程,为web应用做后台支持:)
      

  6.   

    这段代码或许对你有用:
    ---->
    create or replace package body jass_sellio
    is  title   varchar2(128);
      msg     varchar2(2000);
      err_cnt number;/**********************************************************************/
    /* condition                                                          */
    /**********************************************************************/
    procedure joken
    isbegin
    -- ・「・ノ・・ケトセツヌ、チ・チ・ァ・テ・ッ
      if jass_com.chk_address != 'YES' then
        jass_error('...、、');
        return;
      end if;htp.htmlOpen;
    title := '
    htp.headOpen;
      htp.title(title);
      htp.print('<meta http-equiv=Content-Type content="text/html; charset=x-euc-jp">');  jass_com.style_out('0');
    htp.headClose;htp.bodyOpen('/img/BG1.gif', 'onLoad="jass_onload()"');
    jass_com.onload_func('jass_onload');
    jass_com.title_out(title, '/jass_sellio_help.html');htp.centerOpen;htp.formOpen('/jass/plsql/jass_sellio.kekka', 'GET', '', '', 'name="form_cond"');htp.tableOpen;
      htp.tableRowOpen;
        htp.print('<TD>');
    .............
                      htp.formSelectOpen('sisyo_cd', '', '', 'onChange="chg_sisyo()"');
                        jass_com.sisyo;
                      htp.formSelectClose;&#12539;&#65401;&#65381;&#65416;&#65380;&#65425;&#65394;&#65405;&#65380;&#65397;&#65380;&#65403;&#65380;&#12539;JavaScript */
                      jass_com.chg_sisyo('chg_sisyo', 'form_cond', 'sisyo_cd', 'ken_cd');
                      htp.print('&#65413;&#65428;&#65414;&#65403;&#65417;&#65436;&#65400;&#65385;');
                      htp.formSelectOpen('ken_cd');
                        jass_com.pref;
                      htp.formSelectClose;
                    htp.print('</td>');
                  htp.tableRowClose;              htp.tableRowOpen;
                    htp.tableData('&#65396;&#12539;&#65430;&#65377;&#65383;');
                    htp.print('<td>');
                      htp.print('<input type = "radio" name = "kikan_kbn" value = "1" CHECKED '||
                      'onClick="fr_this_yr_1(); fr_this_mt_1(); to_this_yr_1(); to_this_mt_1(); fr_last_yr_1(); fr_last_mt_1(); to_last_yr_1(); to_last_mt_1();">');
                      htp.print('&#65422;&#65439;&#65399;&#65431;');
                      htp.print('<input type = "radio" name = "kikan_kbn" value = "2" '||
                      'onClick="fr_this_yr_2(); fr_this_mt_2(); to_this_yr_2(); to_this_mt_2(); fr_last_yr_2(); fr_last_mt_2(); to_last_yr_2(); to_last_mt_2();">');
    .................
        htp.print('</td>');
      htp.tableRowClose;
    htp.formHidden('dummy');
    htp.formClose;
    htp.centerClose;
    htp.bodyClose;
    htp.htmlClose;
    end;
      

  7.   

    我发的就是用pl/sql直接开发到web上使用的代码。
      

  8.   

    看看《oracle高级编程》,wrox的,清华译的