I didn't try it, but I assume the following statement should work:
D YourDS E DS ExtName(YourFile)
Dim(1)
Exec SQL Insert into YourFile 1 Row Values(:YourDS);
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!"
-----Ursprüngliche Nachricht-----
Von: RPG400-L [mailto:rpg400-l-bounces@xxxxxxxxxxxx] Im Auftrag von
JRusling@xxxxxxxxxxx
Gesendet: Wednesday, 30.9 2015 17:52
An: RPG programming on the IBM i (AS/400 and iSeries)
Betreff: Re: Syntax for Insert into using an rpg data structure, 1 row
I got this to work like this - the ?'s on the insert had to match the number
of fields in the data structure.
data struc -
myds ds
...field1
...field2 . . ... etc
the insert -
clear sql2;
sql2 = 'insert into qtemp/rpttossf ' +
'values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) with nc'; //ec sql insert
into qtemp/rpttossf using :myds; exec sql prepare stmt2 from :sql2; exec sql
execute stmt2 using :myds;
John
John Rusling
Senior Developer/Analyst
Quadion LLC
Minnesota Rubber & Plastics
952.927.1419
<br />
The information in this email is confidential and may be legally privileged.
It is intended solely for the addressee. Access to this email by anyone else
is unauthorized. If you are not the intended recipient, any disclosure,
copying, distribution or any action taken or omitted to be taken in reliance
on it, is prohibited and may be unlawful.
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/rpg400-l.
As an Amazon Associate we earn from qualifying purchases.