<
jean.luc...@gmail.com> wrote:
> Just now i've tried the code:
>
> oracle store procedure:
>
> create or replace procedure sp_test1(name1 varchar2, name2 varchar2)
> is
> begin
> update test1 set t1=name1||name2;
> end;
>
> 4gl code:
>
> BEGIN WORK
> PREPARE id1 FROM "exec sp_test1(?,?);"
> EXECUTE id1 USING "cc", "ddde"
> COMMIT WORK
> select t1||"-test" into name3 from test1
> CALL FGL_WINMESSAGE("First result of data
> is...",name3,"information")
>
> At last , after i execute the code above, i found the data in the
> table 'test1' is the old data;
> it means that it's false to execute the 4gl code.
>
> How can i do it?
> Is there anything wrong in my code above? Can you help to correct
> it? Thanks very much!
>
> We also can chart use this im:
>