If you are trying to do an Insert do it without the declare statement as
c/Exec Sql
C+ Insert ccusnr, ccusnm into UseTaxpf
C+ Select Ccusnr, Ccusnm
C+ From Corcustm
C+ Where
C+ CSTATE = 'MN' and
C+ CSTMTL = :ZTYPE
c/End-exec
If you want a data set do a select statement with a declare
dSQLDATE Ds
d Ccusnr 8
D Ccusnm 30
c/Exec SQl Declare c1 cursor for
C+ select Ccusnr, Ccusnm
C+ From CorCustm
C+ Where
C+ Cstate = 'MN' and
C+ Cstmtl = :ZTYPE
C/Exec Sql Open c1
c/End-exec
C Dow SqlState = '00000'
c/Exec Sql Fetch c1 into :SQLDATA
c/End-exec
c If SqlState <> '00000'
c/Exec Sql Close c1
c/End-exec
c Endif
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Doug Palme
Sent: Tuesday, July 31, 2007 3:54 PM
To: 'RPG programming on the AS400 / iSeries'
Subject: RE: Embedded SQL question
I have tried that, or shall I say here is what I tried:
C/EXEC SQL
C+ DECLARE C1 CURSOR FOR
C+ INSERT INTO USETAXPF SELECT CCUSNR, CCUSNM
C+ FROM CORCUSTM
C+ WHERE CSTATE = 'MN' AND
C+ CSTMTL = :ZTYPE
C/END-EXEC
As a simple first pass, but the compiler balks at the keyword
insert...... I am quite sure it's a stupid little mistake but in
checking the embedded SQL documentation, I found nothing for the insert
command.
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Michael_Schutte@xxxxxxxxxxxx
Sent: Tuesday, July 31, 2007 2:51 PM
To: RPG programming on the AS400 / iSeries
Subject: RE: Embedded SQL question
Well what are you trying to accomplish?
Do you want the result in another file?
If all the program is doing is putting the data in another file, then do
an INSERT into the file with a subselect.
Michael Schutte
Admin Professional
Bob Evans Farms, Inc.
"The Secret's the Sauce! Enjoy our new Bob-B-Q Pulled Pork Knife & Fork
Sandwich!"
"Doug Palme"
<dpalme@xxxxxxxxx
om>
To
Sent by: "'RPG programming on the AS400 /
rpg400-l-bounces@ iSeries'" <rpg400-l@xxxxxxxxxxxx>
midrange.com
cc
Subject
07/31/2007 03:39 RE: Embedded SQL question
PM
Please respond to
RPG programming
on the AS400 /
iSeries
<rpg400-l@midrang
e.com>
As a follow up question, on the fetch statement can I make it something
like the following:
Fetch c1 into usetaxpf
Or do I need to define the fields, and then WRITE the data?
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Michael_Schutte@xxxxxxxxxxxx
Sent: Tuesday, July 31, 2007 2:23 PM
To: RPG programming on the AS400 / iSeries
Subject: Re: Embedded SQL question
I would keep it the way it is with the following changes.
C+ DECLARE C1 CURSOR FOR
C+ SELECT CCUSNR, CCUSNM
C+ FROM CORCUSTM
C+ JOIN SLSTRNL5 ON SLACCT = CCUSNR
C+ WHERE CSTATE='MN' AND
C+ CSTMTL = :ZTYPE
OR
C+ DECLARE C1 CURSOR FOR
C+ SELECT CCUSNR, CCUSNM
C+ FROM CORCUSTM
C+ WHERE CSTATE='MN' AND
C+ CSTMTL = :ZTYPE AND
C+ exists(SELECT 1 FROM SLSTRNL5 WHERE SLACCT = CCUSNR)
Michael Schutte
Admin Professional
Bob Evans Farms, Inc.
"The Secret's the Sauce! Enjoy our new Bob-B-Q Pulled Pork Knife & Fork
Sandwich!"
rpg400-l-bounces@xxxxxxxxxxxx wrote on 07/31/2007 03:13:00 PM:
I have not worked with embedded sql in a looooong time but I have a
project
that will afford me an opportunity to work with it again.
I have two physical files that I need to extract some data from mainly
customer number and name but it is based upon data that is in the
second
PF.
Here is the way I have the select statement defined:
*---> Prepare SQL Statement for Select
C/EXEC SQL
C+ DECLARE C1 CURSOR FOR
C+ SELECT SLACCT, CCUSNR, CCUSNM, CSTATE, CSTMTL
C+ FROM SLSTRNL5, CORCUSTM
C+ WHERE CSTATE='MN' AND
C+ SLACCT = CCUSNR AND
C+ CSTMTL = :ZTYPE
C/END-EXEC
The only pieces of information I really need is the CCUSNR and the
CCUSNM fields, the rest of them are strictly present for testing the
records...
Is there an easy way to fetch those two fields into a work file I have
without having to include the other fields?
************************************************************************
****
This transmission may contain information that is privileged,
Confidential and/or exempt from disclosure under applicable law.
If you are not the intended recipient, you are hereby notified that
any disclosure, copying, distribution, or use of the information
contained herein (including any reliance thereon) is STRICTLY
PROHIBITED. If you received this transmission in error, please
immediately contact the sender and destroy the material in its
entirety, whether in electronic or hard copy format. Thank you.
************************************************************************
****
--
This is the RPG programming on the AS400 / 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.
--
This is the RPG programming on the AS400 / 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.
************************************************************************
****
This transmission may contain information that is privileged,
Confidential and/or exempt from disclosure under applicable law.
If you are not the intended recipient, you are hereby notified that any
disclosure, copying, distribution, or use of the information contained
herein (including any reliance thereon) is STRICTLY PROHIBITED. If you
received this transmission in error, please immediately contact the
sender and destroy the material in its entirety, whether in electronic
or hard copy format. Thank you.
************************************************************************
****
--
This is the RPG programming on the AS400 / 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.
--
This is the RPG programming on the AS400 / 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.
************************************************************************
****
This transmission may contain information that is privileged,
Confidential and/or exempt from disclosure under applicable law.
If you are not the intended recipient, you are hereby notified that
any disclosure, copying, distribution, or use of the information
contained herein (including any reliance thereon) is STRICTLY
PROHIBITED. If you received this transmission in error, please
immediately contact the sender and destroy the material in its
entirety, whether in electronic or hard copy format. Thank you.
************************************************************************
****
As an Amazon Associate we earn from qualifying purchases.