HIRO's.NET Blog

PowerShellが好き

目次

Blog 利用状況

ニュース

あわせて読みたい

書庫

日記カテゴリ

リンク

VB.NETからOracleストアドプロシージャを呼び出す その3

前回(その2)は引数あり(IN引数のみ)のストアドプロシージャをVB.NETから呼び出す方法を紹介しました。

今回は、OUT引数があるストアドプロシージャをVB.NETから呼び出す方法を紹介します。

 

開発言語:VB.NET 2005

使用するテーブルは、Oracleを使用している人であればおなじみの、scott/tigerのEMP表です。

ストアドプロシージャは下記の通りです。もらった引数をINSERT文で書き込み、書き込み後のEMP表総件数をout_TOTALCNTにセットします。

(例によって深い意味はありません。説明用です。)

ストアドプロシージャ3
CREATE OR REPLACE PROCEDURE SCOTT.PROCEDURE3(in_EMPNO in varchar2, in_ENAME in varchar2, in_SAL in number, out_TOTALCNT out number)
IS
BEGIN
    INSERT INTO EMP (EMPNO, ENAME, SAL) VALUES (in_EMPNO, in_ENAME, in_SAL);
    -- INSERT文実行後の総件数を取得する
    
    SELECT COUNT(*) into out_TOTALCNT FROM EMP;
END;
/

 以下、ODP.NET, MicorosoftのOracleClient, OleDB の3種類を使用してPROCEDURE3を呼び出す例です。

 ストアドプロシージャのINパラメータをVB.NETから指定する方法は前回説明した通りです。

 今回は、ストアドプロシージャのOUTパラメータをVB.NETから受け取る方法について説明します。

 まず、OracleParameterのインスタンスを作成します。(OleDBの場合は、OleDbParameterのインスタンス)

 OracleParameterのインスタンス作成時の第1引数には、ストアドプロシージャのOUT引数名(この場合は"out_TOTALCNT")、第2引数にはストアドプロシージャOUT引数の型に合わせたものを指定します。(今回の場合、OracleのNumber型に対して、ODP.NETの場合はOracleDbType.Decimal、OracleClientの場合はOracleType.Number、OleDBの場合はOleDbType.Decimalを指定します。)

 次に、PrameterDirectionをOutputを指定します。(これはストアドプロシージャout_TOTALCNTがOUT引数であるため)

 値の取得方法ですが、ExecuteNonQueryメソッド実行後に、OraclePrameterのValueプロパティを参照します。

 

■ODP.NETサンプル
Private Sub ODP_TEST3()
    Try
        Using OraConn As New OracleConnection("user id=scott;password=tiger;data source=YourServer")
            Using Cmd As New OracleCommand
                'データベース接続を開く
                OraConn.Open()
                Cmd.Connection = OraConn
                'コマンドタイプをストアドプロシージャにする
                Cmd.CommandType = CommandType.StoredProcedure
                '実行するストアドプロシージャを指定
                Cmd.CommandText = "PROCEDURE3"
                'ストアドプロシージャの引数に渡す値の設定
                Cmd.Parameters.Add("in_EMPNO", OracleDbType.Varchar2).Value = "7777"
                Cmd.Parameters.Add("in_ENAME", OracleDbType.Varchar2).Value = "HIRO"
                Cmd.Parameters.Add("in_SAL", OracleDbType.Decimal).Value = 500
                'ストアドプロシージャのout用パラメータ作成
                Dim outPara As New OracleParameter("out_TOTALCNT", OracleDbType.Decimal)
                outPara.Direction = ParameterDirection.Output
                Cmd.Parameters.Add(outPara)

                'ストアドプロシージャの実行
                Cmd.ExecuteNonQuery()

                MessageBox.Show("PROCEDURE3 正常終了 COUNT=" & outPara.Value.ToString(), "SUCCESS", MessageBoxButtons.OK, MessageBoxIcon.Information)
            End Using
        End Using

    Catch OraEx As OracleException
        'Oracle例外発生時
        MessageBox.Show(OraEx.Message, "ORACLE ERROR", MessageBoxButtons.OK, MessageBoxIcon.Stop)

    Catch ex As Exception
        '一般例外発生時
        MessageBox.Show(ex.Message, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Stop)
    End Try
End Sub

■OracleClientサンプル
Private Sub OracleClient_TEST3()
    Try
        Using OraConn As New OracleConnection("user id=scott;password=tiger;data source=YourServer")
            Using Cmd As New OracleCommand
                'データベース接続を開く
                OraConn.Open()
                Cmd.Connection = OraConn
                'コマンドタイプをストアドプロシージャにする
                Cmd.CommandType = CommandType.StoredProcedure
                '実行するストアドプロシージャを指定
                Cmd.CommandText = "PROCEDURE3"
                'ストアドプロシージャの引数に渡す値の設定
                Cmd.Parameters.Add("in_EMPNO", OracleType.VarChar).Value = "7777"
                Cmd.Parameters.Add("in_ENAME", OracleType.VarChar).Value = "HIRO"
                Cmd.Parameters.Add("in_SAL", OracleType.Number).Value = 500
                'ストアドプロシージャのout用パラメータ作成
                Dim outPara As New System.Data.OracleClient.OracleParameter("out_TOTALCNT", OracleType.Number)
                outPara.Direction = ParameterDirection.Output
                Cmd.Parameters.Add(outPara)

                'ストアドプロシージャの実行
                Cmd.ExecuteNonQuery()

                MessageBox.Show("PROCEDURE3 正常終了 COUNT=" & outPara.Value.ToString(), "SUCCESS", MessageBoxButtons.OK, MessageBoxIcon.Information)
            End Using
        End Using

    Catch OraEx As OracleException
        'Oracle例外発生時
        MessageBox.Show(OraEx.Message, "ORACLE ERROR", MessageBoxButtons.OK, MessageBoxIcon.Stop)

    Catch ex As Exception
        '一般例外発生時
        MessageBox.Show(ex.Message, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Stop)
    End Try
End Sub

■OleDBサンプル
Private Sub OleDB_TEST3()
    Try
        Using OraConn As New OleDbConnection("Provider=MSDAORA.1.Oracle;user id=scott;password=tiger;data source=YourServer")
            Using Cmd As New OleDbCommand
                'データベース接続を開く
                OraConn.Open()
                Cmd.Connection = OraConn
                'コマンドタイプをストアドプロシージャにする
                Cmd.CommandType = CommandType.StoredProcedure
                '実行するストアドプロシージャを指定
                Cmd.CommandText = "PROCEDURE3"
                'ストアドプロシージャの引数に渡す値の設定
                Cmd.Parameters.Add("in_EMPNO", OleDbType.VarChar).Value = "7777"
                Cmd.Parameters.Add("in_ENAME", OleDbType.VarChar).Value = "HIRO"
                Cmd.Parameters.Add("in_SAL", OleDbType.Decimal).Value = 500
                'ストアドプロシージャのout用パラメータ作成
                Dim outPara As New OleDbParameter("out_TOTALCNT", OleDbType.Decimal)
                outPara.Direction = ParameterDirection.Output
                Cmd.Parameters.Add(outPara)

                'ストアドプロシージャの実行
                Cmd.ExecuteNonQuery()

                MessageBox.Show("PROCEDURE3 正常終了 COUNT=" & outPara.Value.ToString(), "SUCCESS", MessageBoxButtons.OK, MessageBoxIcon.Information)
            End Using
        End Using

    Catch OleEx As OleDbException
        'Oracle例外発生時
        MessageBox.Show(OleEx.Message, "OleDB ERROR", MessageBoxButtons.OK, MessageBoxIcon.Stop)

    Catch ex As Exception
        '一般例外発生時
        MessageBox.Show(ex.Message, "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Stop)
    End Try
End Sub


投稿日時 : 2007年4月19日 23:33

コメントを追加

# VB.NETからOracleストアドプロシージャを呼び出す その4(VB.NET Tips) 2008/03/21 23:50 HIRO's.NET Blog

この記事は2007/04/20にわんくまBlogへ書いたものです。 前回(その3) は引数ありのストアドプロシージャ のOUTパラメータを受け取る方法を紹介しました。 今回は、REF CURSORをOUT引数として持つストアドプロシージャをVB

# Kjiao Vum Vnfp Kex Eamfhb 2014/12/04 17:05 MichaelLum

?縣ttp://www.lindahlbeck.com/22/Samantha/20141203005142-~=-33zf.htmlhttp://www.lindahlbeck.com/22/Samantha/20141203005142-&.-14yz.html
http://www.lindahlbeck.com/22/Samantha/20141203005142-@+-02ev.htmlhttp://www.lindahlbeck.com/22/Samantha/20141203005143-~~-40eu.htmlhttp://www.lindahlbeck.com/22/Samantha/20141203005143-$+-03ij.html
essential style and design principles proportionately to any or all the girl choices. Incorporating colour, structure, structure, proportionately, has become the respectable and reputational of the http://www.lindahlbeck.com/22/Samantha/20141203005143-+--57xx.htmlthe girl design do the job, coming from crockery to help garments, coming from silk Ties for you to nighttimehttp://www.lindahlbeck.com/22/Samantha/20141203005143-.--65pw.html gowns for Royalty. The actual Orb has become an worldwide recognised brand name symbolic representation, with a distinction. Ease-of-use: The actual Simon http://www.lindahlbeck.com/22/Samantha/20141203005144-~&-62pz.htmlCarter philosophySimon Davidson track record stems from his groundbreaking way of men fashion accessories design adhering to his or her introductory guys brooches, in the middle in order to past due 85. Wide variety his / her authentic styles are usually categorised old-fashioned. Clair Carter's cufflinks preservehttp://www.lindahlbeck.com/22/Samantha/20141203005144-.+-54nw.html the school of thought connected with ease-of-use in the styles; simple, functional, with out losing all their fashionable borders. His cufflinks not just company to help bp cuff, these people glean ongly a touch of style and frame completely an object associated with manifestation. This kind of wonderful present of fashion and architectural will certainly harmonize with any kind of attire, formal or even everyday, below an essential function built in with Simon philosophy connected with simplicity, a cufflink for all instances.
http://www.lindahlbeck.com/22/Samantha/20141202234631-$--00xz.html
http://www.lindahlbeck.com/22/Samantha/20141203004520-@+-32tl.html
http://www.lindahlbeck.com/22/Samantha/20141203002001-~@-87bw.html
http://www.lindahlbeck.com/22/Samantha/20141203000652-~.-46dc.html
http://www.lindahlbeck.com/22/Samantha/20141203010403-@@-31ka.html
http://www.lindahlbeck.com/22/Samantha/20141203000944-+@-05nv.html
http://www.lindahlbeck.com/22/Samantha/20141203003628-~$-12tf.html
http://www.lindahlbeck.com/22/Samantha/20141202235151----64pi.html
http://www.lindahlbeck.com/22/Samantha/20141203002903-+$-37rp.html
http://www.lindahlbeck.com/22/Samantha/20141203000412-&+-37xs.html
http://www.lindahlbeck.com/22/Samantha/20141202234753-.=-68ji.html
http://www.lindahlbeck.com/22/Samantha/20141202234728-@+-62em.html
http://www.lindahlbeck.com/22/Samantha/20141202234800-=&-77nu.html
http://www.lindahlbeck.com/22/Samantha/20141202234445-_@-77sk.html
http://www.lindahlbeck.com/22/Samantha/20141203000438-.$-97fi.html
http://www.lindahlbeck.com/22/Samantha/20141203005910-~&-67py.html
http://www.lindahlbeck.com/22/Samantha/20141203002508-+$-51ye.html
http://www.lindahlbeck.com/22/Samantha/20141203002748-@$-09qd.html
http://www.lindahlbeck.com/22/Samantha/20141203004052-&.-96uz.html
http://www.lindahlbeck.com/22/Samantha/20141202234725--=-03pd.html
http://www.lindahlbeck.com/22/Samantha/20141203003141-.--49ln.html
http://www.lindahlbeck.com/22/Samantha/20141202235252-~--42bg.html
http://www.lindahlbeck.com/22/Samantha/20141203000354-&.-67lj.html
http://www.lindahlbeck.com/22/Samantha/20141202234201--@-27kj.html
http://www.lindahlbeck.com/22/Samantha/20141203001346-&~-08di.html

# uslnfjyhvqy halimfocr bybjzgym
2014/12/14 18:24 GeorgeLync

http://www.succeedinmath.org/mase/20141212093227295.htmhttp://www.porttechnicatraining.com/mase/20141212093227991.htm http://www.horizonsfwb.com/yuo/20141212170303112.htmhttp://www.cammond.com/yuo/20141212170303117.htm http://www.shiesumber.com/mase/20141212152337779.htmhttp://futonmontgomeryfarmersmarket.org/mase/20141212152336687.htm http://www.ch-distributing.com/mase/20141211175519459.htmhttp://www.buotta.com/mase/20141211175519571.htm
http://www.darrecurtis.com/mase/20141212093227991.htmhttp://www.annikbrunet.com/mase/20141212093228128.htm http://www.jpseafoodcafe.com/yuo/20141212170309106.htmhttp://www.bcaceuar.com/yuo/20141212170308680.htm http://www.shedsandswings.com/mase/20141212152336161.htmhttp://www.shiesumber.com/mase/20141212152337670.htm http://www.hsmf.org/mase/20141211175519727.htmhttp://www.design3000pus.com/mase/20141211175519733.htm
your own being a mother or father issues that element 's they may be linked to deciding on everything which might look speak aloud as part of your amazing individual lifehttp://www.trfcc.org/mase/20141212093228525.htmhttp://www.quaityswitch.com/mase/20141212093228054.htm http://augrom.com/yuo/20141212170308542.htmhttp://www.deckersuppy.com/yuo/20141212170308715.htm http://www.buotta.com/mase/20141212152337142.htmhttp://www.deckersuppy.com/mase/20141212152337573.htm http://www.shiesumber.com/mase/20141211175519234.htmhttp://www.durochervetcinic.com/mase/20141211175519667.htm. Atmosphere Test five Vintage You don't have to have got a a reasonably tiara on your own examine consider may. America will not be held exclusively by way of it really is residents, possibly not by a prolongedhttp://www.rhtt.com/mase/20141212093229757.htmhttp://www.noverr.com/mase/20141212093230582.htm http://www.mcphersondesigngroup.com/yuo/20141212170308365.htmhttp://www.teammates.com/yuo/20141212170308477.htm http://www.magsarus.com/mase/20141212152337811.htmhttp://www.shedsandswings.com/mase/20141212152338548.htm http://www.christinaakegofcub.com/mase/20141211175519424.htmhttp://www.recognitionrobotic.com/mase/20141211175518262.htm photograph. Promptly just about any mobile handsets choose quality HERMES 747 normally are a strategy to pal along with anybody you like, although are inventing becoming a boss designing claim in direction of specialized housemaids attracting together with every individual once more a regular voyage. Persons will certainly won't help it become possible for any kind enjoy which will does not admittance to find out more about turn into breath connected with surroundings properly the actualhttp://www.pivotagroup.com/mase/20141212093230009.htmhttp://www.here-and-beyond.com/mase/20141212093230825.htm http://www.buotta.com/yuo/20141212170309732.htmhttp://www.sauerandeibensperger.com/yuo/20141212170308036.htm http://www.shedsandswings.com/mase/20141212152338338.htmhttp://www.shedsandswings.com/mase/20141212152338409.htm http://www.magsarus.com/mase/20141211175519584.htmhttp://www.cheonian.com/mase/20141211175518070.htm total amenities. Improvedadvanced handbags designed richness with permission inside the style coming from a lots of girls. Hot Montage Handbags Purchase Many keynote loudspeakers consist of: Verizon pre-paid Communications' Mature Next throughout command, Derek Accigliato; Movie director linked with CBS Idea, He Poltrack; ESPN Subsequent in command line.
http://www.deckersuppy.com/mase/20141212152014823.htm
http://www.magsarus.com/mase/20141212151418757.htm
http://futonmontgomeryfarmersmarket.org/mase/20141212145843745.htm
http://www.shedsandswings.com/mase/20141212153239457.htm
http://futonmontgomeryfarmersmarket.org/mase/20141212150649731.htm
http://www.pivotagroup.com/mase/20141212092327817.htm
http://www.screentechinc.com/mase/20141212093602860.htm
http://www.jointsponsor.com/mase/20141212103451219.htm
http://www.coegedigest.com/mase/20141212102512657.htm
http://www.inventbio-med.com/mase/20141212091206654.htm
http://www.wjnewf.com/yuo/20141212170606576.htm
http://www.teammates.com/yuo/20141212171221928.htm
http://www.sauerandeibensperger.com/yuo/20141212171015434.htm
http://www.buotta.com/yuo/20141212170118346.htm
http://www.jpawfirm.com/yuo/20141212170226619.htm
http://www.fiberchar.net/mase/index.htm
http://www.cypresscutura.com/mase/20141211182345059.htm
http://www.guthriecenter.com/mase/20141211183716878.htm
http://www.guthriecenter.com/mase/20141211181142663.htm
http://www.bcaceuar.com/mase/20141211175740932.htm

# My brother recommended I might like this website. He was totally right. This post truly made my day. You can not imagine just how much time I had spent for this information! Thanks! 2021/07/27 6:42 My brother recommended I might like this website.

My brother recommended I might like this website.
He was totally right. This post truly made my day. You can not imagine
just how much time I had spent for this information! Thanks!

# My brother recommended I might like this website. He was totally right. This post truly made my day. You can not imagine just how much time I had spent for this information! Thanks! 2021/07/27 6:45 My brother recommended I might like this website.

My brother recommended I might like this website.
He was totally right. This post truly made my day. You can not imagine
just how much time I had spent for this information! Thanks!

# My brother recommended I might like this website. He was totally right. This post truly made my day. You can not imagine just how much time I had spent for this information! Thanks! 2021/07/27 6:48 My brother recommended I might like this website.

My brother recommended I might like this website.
He was totally right. This post truly made my day. You can not imagine
just how much time I had spent for this information! Thanks!

# My brother recommended I might like this website. He was totally right. This post truly made my day. You can not imagine just how much time I had spent for this information! Thanks! 2021/07/27 6:51 My brother recommended I might like this website.

My brother recommended I might like this website.
He was totally right. This post truly made my day. You can not imagine
just how much time I had spent for this information! Thanks!

# What's up to every one, because I am genuinely keen of reading this webpage's post to be updated daily. It carries good material. 2021/08/04 6:55 What's up to every one, because I am genuinely kee

What's up to every one, because I am genuinely keen of reading this webpage's post
to be updated daily. It carries good material.

# Why users still make use of to read news papers when in this technological globe the whole thing is accessible on net? 2021/08/30 20:08 Why users still make use of to read news papers wh

Why users still make use of to read news papers when in this
technological globe the whole thing is accessible on net?

# Why users still make use of to read news papers when in this technological globe the whole thing is accessible on net? 2021/08/30 20:09 Why users still make use of to read news papers wh

Why users still make use of to read news papers when in this
technological globe the whole thing is accessible on net?

# Why users still make use of to read news papers when in this technological globe the whole thing is accessible on net? 2021/08/30 20:10 Why users still make use of to read news papers wh

Why users still make use of to read news papers when in this
technological globe the whole thing is accessible on net?

# Why users still make use of to read news papers when in this technological globe the whole thing is accessible on net? 2021/08/30 20:11 Why users still make use of to read news papers wh

Why users still make use of to read news papers when in this
technological globe the whole thing is accessible on net?

# We stumbled over here coming from a different web page and thought I might check things out. I like what I see so i am just following you. Look forward to looking over your web page repeatedly. 2021/09/04 14:16 We stumbled over here coming from a different web

We stumbled over here coming from a different web page and thought I might check things out.
I like what I see so i am just following you. Look forward to looking over your web
page repeatedly.

# We stumbled over here coming from a different web page and thought I might check things out. I like what I see so i am just following you. Look forward to looking over your web page repeatedly. 2021/09/04 14:17 We stumbled over here coming from a different web

We stumbled over here coming from a different web page and thought I might check things out.
I like what I see so i am just following you. Look forward to looking over your web
page repeatedly.

# We stumbled over here coming from a different web page and thought I might check things out. I like what I see so i am just following you. Look forward to looking over your web page repeatedly. 2021/09/04 14:18 We stumbled over here coming from a different web

We stumbled over here coming from a different web page and thought I might check things out.
I like what I see so i am just following you. Look forward to looking over your web
page repeatedly.

# Stunning story there. What occurred after? Take care! 2021/09/06 12:02 Stunning story there. What occurred after? Take ca

Stunning story there. What occurred after? Take care!

# I think the admin of this site is actually working hard for his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games 2021/09/12 22:37 I think the admin of this site is actually working

I think the admin of this site is actually working hard for
his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games

# I think the admin of this site is actually working hard for his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games 2021/09/12 22:38 I think the admin of this site is actually working

I think the admin of this site is actually working hard for
his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games

# I think the admin of this site is actually working hard for his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games 2021/09/12 22:39 I think the admin of this site is actually working

I think the admin of this site is actually working hard for
his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games

# I think the admin of this site is actually working hard for his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games 2021/09/12 22:40 I think the admin of this site is actually working

I think the admin of this site is actually working hard for
his web site, for the reason that here every data is quality based information. ps4 https://bit.ly/3nkdKIi ps4 games

# There is certainly a great deal to find out about this subject. I like all the points you've made. https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30 minutes 2021/10/22 19:21 There is certainly a great deal to find out about

There is certainly a great deal to find out about this subject.
I like all the points you've made. https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30 minutes

タイトル
名前
URL
コメント