× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Correction the closing parenthesis at the end must be removed and replaced
with a quote.

MySQLTEXT = 'Values(Select RRN(a), ' + %Trim(Field_Name) +
' From ' + %Trim(Library_Name) + '/' + %Trim(File_Name) +
' a Where RRN(a) = 1) ' +
' into ?, ?';

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 Birgitta
Hauser
Gesendet: Wednesday, 17.9 2014 06:52
An: 'RPG programming on the IBM i (AS/400 and iSeries)'
Betreff: AW: Embedded SQL question

SELECT INTO cannot be used in composition with dynamic SQL.
You either need a cursor, performing a PREPARE, DECLARE, OPEN, FETCH and
CLOSE statement.
Or VALUES INTO which is supported in conjunction with dynamic SQL

MySQLTEXT = 'Values(Select RRN(a), ' + %Trim(Field_Name) +
' From ' + %Trim(Library_Name) + '/' + %Trim(File_Name) +
' a Where RRN(a) = 1) +
' into ?, ?);

Exec SQL Prepare DynSQL From :MySQLText;

Exec SQL Execute DynSQL using :HostVarRRN, :HostVarField;

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 Bill
Howie
Gesendet: Wednesday, 17.9 2014 06:35
An: rpg400-l@xxxxxxxxxxxx
Betreff: Embedded SQL question

Hello all,

I'm trying to use dynamic embedded SQL to retrieve a value in a program.
I was originally trying to use host variables for the needed data but then I
found out that you can't use host variables in dynamic SQL and that you
have to use parameter markers instead. So here's what I have:

MySQLText = 'Select rrn(a), a.' + %Trim(Field_Name) +
' Into ?,?' + ' From ' +
%Trim(Library_Name) + '/' + %Trim(File_Name) +
' a where rrn(a) = 1';

exec sql
SET OPTION
commit=*none,
datfmt=*iso;

exec sql prepare selectRecord from :MySQLText; exec sql execute
selectRecord using :rrn,:OldCompany;

When I run the program in debug, the MySQLText field looks like this:

Select rrn(a), a.CONO15 Into ?,? From COPYAULT2/INP15 a wher e rrn(a) = 1

and I get the following errors:

Token ? was not valid. Valid tokens: : <IDENTIFIER>.
Prepared statement SELECTRECORD not found.


I'm stumped as to what to do from here. This SQL statement should yield
one record (and does when run interactively) and the thing I'm trying to
grab is the value in :OldCompany.

Any help would be MOST appreciated. Thanks!

Bill
--
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.


--
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.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.