Board index » delphi » Please help -- Stored Proc parameter passing.
Jim Fleming
![]() Delphi Developer |
Fri, 12 Aug 2005 21:57:50 GMT
Please help -- Stored Proc parameter passing.
We want to pass a Boolean data item as input parameter to a TADOStoredProc,
as follows: ADOStoredProc1.Active := False; ADOStoredProc1.Parameters.ParamByName('UnTieneAcceso').Value := True; ADOStoredProc1.ExecProc; where the stored procedure is: CREATE OR REPLACE PROCEDURE A_Test (ABoolParam in boolean) IS When we perform the ExecProc we get an OleException. Why? The database is Oracle 9i, Oracle OLEDB Provider, MDAC 2.7, Delphi 7. Anyone know what is wrong??? or must we pass all boolean parameters as We need help on this one: Jim Fleming |