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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Parameter not set in Query String" using ExecProc

Status
Not open for further replies.

troyu

Programmer
Nov 21, 2000
185
CA
When using ExecProc, to launch a stored procedure on our SQL Server, I get an error message EDBEngineError with message "Parameter not set in query string". I am able to manually launch the stored procedure within SQL Server Enterprise Manager...

My code:

Form_GL.ClearBnkProc.Prepare;
Form_GL.ClearBnkProc.ExecProc;

I am using Delphi 1.0.

Please advise.
 
It looks like the compiler doesn't know which type of field to use for some parameter. Check the params property in the procedure, maybe you have to indicate which type of field it is. S. van Els
SAvanEls@cq-link.sr
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top