All were very good but I probably enjoyed Paul the most.
To keep this from becoming just a personal correspondance, I would highly recommend RPG World for any level of RPG developer. Not only were the sessions very good but we got to spend time in Q & A and networking with some of the very best...
Ronze, I did not mean to imply that you not use RPGLE. I was suggesting that you work out the format of your sql statement prior to putting it in your program.
Having said that, perhaps I did not fully understand your situation. If you need to retrieve one record at a time from file01 and...
If I understand what you want to do (update file01 from a value found in file02) you don't really need a cursor.
Try a single sql statement like this:
INSERT INTO FILE01 (MYCHAR)
SELECT MYCHAR FROM
FILE02 WHERE MYCHAR LIKE 'M%'
If you type "strsql" from a command line and type "insert" and...
I'm not sure it would be considered good style but it works fine. I write almost exclusivly in /free now but embedded SQL requires fixed-type specs. Rather than drop in and out of /free, I exsr from /free and place my fixed code in the subroutine.
Kyle
I've just recently started passing pointers. Seems to work very well.
If this is not familiar to you, there is an excellent tutorial at http://www.scottklement.com/rpg/pointers.html
<code>
*****************************************************************
* Program name: EAf20R150
*
* Program objective: send email to sale reps for previously faxed
* EA Select customer welcome letter
*
* Creation date...
First thing is that you do not need the f-spec for the PF.
Second, when you want to loop through a set of records, you load a cursor ( temporary result set) and then fetch one record at a time from the cusor for your report processing.
I will post a short example later.
I have been asked to provide an internal e-mail solution for a small church office. There are five users. Some have dial-up Internet access while others have no access. All are on a lan. They want to be able to send internal e-mail.
I have a limited budget ($0) but several old PC's to scavenge...
Thanks but I need to access (only display in the local browser) the "My Computer" folder. This is to allow the user (on an intranet) to browse to and select pictures for upload to a server. Any thoughts?
Is there any way to access "My Computer" with a url? I know you can access a specific drive but I need to show the contents of "My Computer" in a frame. Any way to do it?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.