Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Help needed with hosting APEX XE and domain name

Alistair LaingJul 17 2008 — edited Aug 20 2008
Hi,

I'm looking at hosting my own APEX XE and need some help. I have APEX XE installed and running on my PC. I am using it to demo some apps. I have a registered domain which I would like to use as well.

Any assistance would be appreciated.

Comments

24208
Hi,

See the GetCursorFunction sample code in this OTN article:

http://www.oracle.com/technology/pub/articles/mastering_dotnet_oracle/williams_refcursors.html

Hope that helps,

Mark
520094
Yes..!!! hm hmm
Excelent. Its working fine.

Thanks a lot...William.
372016
You need to add a parameter to your command;

con.Open();
OracleCommand cmd = new OracleCommand("Test", con);
cmd.CommandType = CommandType.StoredProcedure;

OracleParameter pRet = cmCommand.Parameters.Add("r_cursor", OracleDbType.RefCursor );
pRet.Direction = ParameterDirection.Output;
OracleDataAdapter adptr=new OracleDataAdapter(cmd);
DataSet ds = new DataSet();
adptr.Fill(ds,"r_cursor");
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 17 2008
Added on Jul 17 2008
40 comments
4,437 views