Results 1 to 5 of 5
Thread: Object reference to number
- 05-26-2008, 03:25 PM #1
Member
- Join Date
- May 2008
- Posts
- 3
- Rep Power
- 0
Object reference to number
Hi all,
I am new to Java and need some assistance. I am using java stored procedures in Oracle and need to convert an object reference in java to a number so that I can pass it back to Oracle for use further down the oracle stored procedure. See the following code for a rough idea of what I am trying to accomplish:
Java Code:// Java class jsp { static int GetObject() { Object o = new Object(); int ref = GetRef(o); return ref; } static void SetValue(int ref, string value) { Object o = GetObject(ref); o.setProperty = value; } }I am struggling with the "GetRef" part.... :confused: I don't know how to accomplish it in Java. Any help or links would be appreciated...Java Code:-- Oracle stored proc create or replace procedure do_something as l_ohnd number; begin l_ohnd := jsp.GetObject(); -- oracle code... jsp.SetValue(l_ohnd, 'new value'); end do_something;
- 05-27-2008, 10:16 AM #2
- 05-27-2008, 01:11 PM #3
Member
- Join Date
- May 2008
- Posts
- 3
- Rep Power
- 0
RTFM?
Which FM? I think for a java beginner, I am doing something a little more advanced. Google searches havn't given me anything even close yet... :(
- 05-27-2008, 01:18 PM #4
- 05-27-2008, 01:23 PM #5
Member
- Join Date
- May 2008
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
Object and reference
By katie in forum New To JavaReplies: 2Last Post: 10-19-2009, 03:45 PM -
pls help me out its critical ...... how can we use an arralylist reference
By raj reddy in forum Advanced JavaReplies: 1Last Post: 04-15-2008, 12:09 PM -
pls help me out its critical ...... how can we use an arralylist reference
By raj reddy in forum Web FrameworksReplies: 0Last Post: 04-15-2008, 08:12 AM -
Getting the Object Reference Name
By Deathmonger in forum New To JavaReplies: 2Last Post: 03-12-2008, 02:51 PM -
reference to elements in array
By Igor in forum New To JavaReplies: 1Last Post: 12-14-2007, 11:56 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks