OraOLEDB + ORA Error 1008

Stimulsoft Reports.WEB discussion
Post Reply
selbjx
Posts: 4
Joined: Wed Apr 22, 2009 5:34 am
Location: derby

OraOLEDB + ORA Error 1008

Post by selbjx »

i am trialing your software Reports.Web 2009 version, and recieving the following error:

ORA-01008: not all variables bound

The select statement includes a single variable :IDENT which i am trying to set using:

Code: Select all

StiReport report = StiWebReport1.GetReport();

report.Compile();

report.CompiledReport.DataSources["DataSource1"].Parameters[":IDENT"].ParameterValue = "1000060";

StiWebViewer1.Report = report;
Any suggestions. I am using the ORAOLEDB provider.
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

OraOLEDB + ORA Error 1008

Post by Jan »

Hello,

Please try following code:

Code: Select all

StiReport report = StiWebReport1.GetReport();

report[":IDENT"] = "1000060";

StiWebViewer1.Report = report;
Thank you.
selbjx
Posts: 4
Joined: Wed Apr 22, 2009 5:34 am
Location: derby

OraOLEDB + ORA Error 1008

Post by selbjx »

I ended up using the oracleclient on your website which has worked fine, many thanks
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

OraOLEDB + ORA Error 1008

Post by Edward »

Hi,

You are welcome, please let us know if any additional help is required.

Thank you.
Post Reply