Board index » delphi » [ORACLE][dbexpress] stored procedure parameters
A-tech
![]() Delphi Developer |
Sun, 30 Jan 2005 17:11:44 GMT
[ORACLE][dbexpress] stored procedure parameters
i ve some problem with my stored proc in ORACLE using DELPHI dbexpress
I ve pb when passing integer, number,float, date parameters only char parameters works example: Here is my ORACLE table CREATE TABLE TB_TRAJ TRAJ_ID char(20) NOT NULL, here is my stored proc: a basic INSERT create or replace procedure PROC_INSERT_TB_TRAJ AS with the console SQL, i can execute my stored procecedure without a pb. :) But not with DELPHI et dbexpress :( When i get the parameters with the dbexpress stored procedure component, the parameters are ftBCD for p_Traj_SSR p_Traj_Piste and not ftinteger !!! When i get the parameters with the dbexpress stored procedure component, the parameters are fttimestamp for p_traj_creation_date and not ftdatetime !!! Why ? Do somebody know what i do wrong? i become crazy. |