Jump to content

How to Call PLSQl procedure in jasper


jamunatgowda28

Recommended Posts

  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

call procedure name only with parameter-:

In dataset and queries

<prcedure_name><parameter1>,<parametter2>

 

e.g

1) dbo.SP_Report  $P{date_from}, $P{date_to} OR

2) dbo.SP_Report  @p1=$P{date_from}, @p2=$P{date_to}

3) call dbo.SP_Report  $P{date_from}, $P{date_to}  

 

Regards

Ajay

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...