It is not compiled because you have:
READS SQL DATA and CONTAINS SQL (you can specify only one of them)
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them and keeping them!"
„Train people well enough so they can leave, treat them well enough so they don't want to.“ (Richard Branson)
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Mario Martoriello
Sent: Freitag, 23. Oktober 2020 15:58
To: RPG programming on IBM i <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: Re: error 579 calling a stored procedure
Hello Birgitta
thank for your answer. You suggest in the create procedure to specify "MODIFIES SQL DATA" ?
I have used also this statement
create procedure acg_persdb/scadman
( Tipo char(1), annodo char(4), Numedo char(7),
Societ chaR(2))
DYNAMIC RESULT SETS 1
external name 'ACG_PERSDB/XFTC002'
language rpgle
READS SQL DATA
parameter style db2sql
contains sql
not deterministic ;
but sql didn't create the procedure and the error message was unexpected clause found as the compiler didn't accept parameter style db2sql
regards
mario
-----Messaggio originale-----
From: Birgitta Hauser
Sent: Friday, October 23, 2020 2:24 PM
To: 'RPG programming on IBM i'
Subject: RE: error 579 calling a stored procedure
Try to compile your procedure with Modifies SQL Data (instead of Reads SQL
Data)
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les
Brown)
"If you think education is expensive, try ignorance." (Derek Bok) "What is worse than training your staff and losing them? Not training them and keeping them!"
„Train people well enough so they can leave, treat them well enough so they don't want to.“ (Richard Branson)
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Mario Martoriello
Sent: Freitag, 23. Oktober 2020 13:41
To: rpg400-l@xxxxxxxxxxxxxxxxxx
Subject: error 579 calling a stored procedure
Hi All
I wrote a stored procedure tahat return a rs using EXEC SQL Set Result Sets Array :DsXRate for :I Rows ; The stored procedure is written in RPGLE and use select SQL to access to Database, I create the stored with these
istructions:
create procedure acg_persdb/scadman
( Tipo char(1), annodo char(4), Numedo char(7),
Societ chaR(2))
DYNAMIC RESULT SETS 1
external name 'ACG_PERSDB/XFTC002'
language rpgle
parameter style db2sql
contains sql
not deterministic ;
Now when i Try to use it from a program VB ADO that runs on client I receive the error SQLcode -579 that means :”SQL read data Not allowed”
If I remove from my stored proc the SELECT SQL and use SETLL and READ the stored works fine.
Any suggestions about this?
Thanks in advance
Mario
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
As an Amazon Associate we earn from qualifying purchases.