Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / SQL
Article

Oracle Stored Procedure Wrapper

Rate me:
Please Sign up or sign in to vote.
4.71/5 (14 votes)
11 Aug 20042 min read 126.4K   1.1K   50   21
This small VB.NET application allows you to quickly generate VB.NET wrapper code for your Oracle stored procedures.

Sample Image - OracleSPWrapper.jpg

Introduction

This small VB.NET application allows you to quickly generate VB.NET wrapper code for your Oracle stored procedures. This code can then be copy/pasted into your VB.NET application.

Background

Visual Studio has similar tools built in for SQL Server, but their Oracle equivalents are lacking. That's where this tool comes in handy.

Using the Tool

This VB.NET application comes ready to run. All you need is the .NET Framework 1.1 installed and the appropriate Oracle SQL*Net drivers because the application uses the System.Data.OracleClient for database access.

Upon start up, you need to log in to your Oracle database by clicking on the "Login" button and entering your username, password, and database. If the login is successful, the application will populate the list box with all of your stored procedures, whether they're stand-alone or part of a package.

You highlight a stored procedure and click "Go". If you want to name your VB Sub different than the name of the stored procedure, edit the text in the "Sub Name" field.

When you click "Go", the application will query the database for the parameter list of the stored procedure and build a VB.NET Sub in the text box.

To use the Sub, copy and paste the generated text into your application.

Points of Interest

The is a fairly quick-and-dirty application that I needed for a project. As such, it's not extremely robust or fault-tolerant. If there is enough interest here, I can further refine it.

The application works for stored PROCEDURES, but not stored FUNCTIONS, because with functions, a return value is expected. I didn't add support for FUNCTIONS because I didn't need it at the time; all of my procedures use OUT or IN/OUT parameters for passing data back to the application.

I've tested this application on Oracle8i and Oracle9i. Earlier versions may or may not work.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionREF_CUR? Pin
emunews2-Jun-05 11:15
emunews2-Jun-05 11:15 
AnswerRe: REF_CUR? Pin
Al Ortega10-Oct-05 3:39
Al Ortega10-Oct-05 3:39 
AnswerRe: REF_CUR? Pin
HenryBStinson27-Dec-06 7:59
HenryBStinson27-Dec-06 7:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.