Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing Java Date into Oracle Package Variable Date.

Status
Not open for further replies.

scohan

Programmer
Dec 29, 2000
283
US
How can I pas a java.util.Date set in my java app into a package variable? The package looks like this:

CREATE OR REPLACE PACKAGE logpack AS
updateTs Date;

PROCEDURE SetAuditUpdateTs(p_UpdateTs IN DATE);

END logpack;
/

CREATE OR REPLACE PACKAGE BODY logpack AS

PROCEDURE SetAuditUpdateTs(p_UpdateTs IN DATE) IS
BEGIN
updateTs := p_UpdateTs;
END SetAuditUpdateTs;

END logpack;
/

Thanks

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top