|
Mike - I'm not sure exactly what your statement means. If you mean that
the programs themselves can't have embedded SQL, that's something I
don't know.
Now what I do know is that if a key field has a FIELDPROC added to it,
that the resulting order in RPG is probably incorrect. I wrote an Open
Access handler to turn all DISK IO in RPG into SQL statements - only
change in the RPG is to add the handler to the F-spec. I wrote this for
Townsend Security (this was publicly announced, so no secrets being
revealed here), I believe there is a relationship now with Syncsort, if
anyone has a need for this - I'm not working for either company, so this
is not a <verndor option>!!
Vern
On 3/23/2020 11:00 PM, Mike Jones wrote:
Nathanhandful
Field proc programs don't yet allow the use of any SQL. They also don't
yet support calling a program or command that directly or indirectly runs
SQL statements. Example: you can't call IBM's API to create a key store
file, from inside a field procedure program, because that API runs SQL in
its plumbing.
I've gotten all that encryption field procedure stuff to work well, but i
was a PITA getting it all to work. I utilized code from at least a
of sample programs.encryption
- AES 256-bit encryption
- DEKs (data encryption keys) stored in key store files.
- Using KEKs (key encrypting keys) to encrypt the DEKs (data
keys), also stored in key store files.retrieved
- Using master keys to encrypt the key store files.
- Using tokens with the encryption APIs so the keys can't be
even under debug.types
If you're trying to take a zoned decimal number, encrypt it, and store it
in the database, you need to store the result in:
- A CHAR or VARCHAR column with the FOR BIT DATA attribute applied,
which uses CCSID 65535.
- A BINARY column
- A VARBINARY column
- A BLOB column
- Or the DDS file defined equivalent of one of the above.
The encrypted data is a binary string that requires one of those data
to store the results. Encrypted data doesn't conform to the set of hexcolumn,
values that are allowable for storage in a zoned or packed decimal
talk
Get the IBM Redbook "IBM System i Security: Protecting i5/OS Data with
Encryption". In the July 2008 version of that book, see chapter 7
"Database Considerations", section 7.2, pages 78 and 79 in particular,
about storage requirements of the encrypted data.COLUMN),
Another great PDF book is "Protecting IBM i data with encryption" by Kent
Milligan and Beth Hagemeister (March 2014). Read pages 31 through 33 for
storage requirements.
When you apply the field procedure to a column (ALTER TABLE ALTER
it calls the field procedure to encrypt that column for ALL rows of thedata
table.
When you drop a field procedure from a column (ALTER TABLE ALTER COLUMN),
it calls the field procedure to decrypt that column for ALL rows of the
table.
I imagine a field procedure could be used for a non-encryption purpose,
although I've not tried that (no use case comes to mind at the moment).
Assuming that is allowed, a field procedure that returns zoned decimal
for storage in a zoned decimal column is fine to do, but not withencrypted
data.don't
HTH,
Mike
On Mon, Mar 23, 2020 at 4:48 PM Vernon Hamberg <vhamberg@xxxxxxxxxxxxxxx
wrote:
Nathan
Is the numeric column in question a key of the file? Are you using
native record-level access? If either, then RPG might give you problems.
I thought it was only with keyed columns, but maybe not.
You might try using SQL to process the file.
Vern
On 3/23/2020 3:26 PM, Nathan Hughes wrote:
First I want to apologize for my ignorance in RPGLE...we typically
resolution.use this programming language, but have to for FieldProc purposes. I've
researched this issue for a couple weeks now, and cannot find a
theI'm currently trying to write a field procedure program. I have taken
https://www.ibm.com/support/knowledg...yfpexample.htm<IBM RPGLE example (
https://www.ibm.com/support/knowledgecenter/ssw_ibm_i_73/sqlp/rbafyfpexample.htm
),I
and started to modify it to work for us.
Here is the table that was created for testing purposes:varchar, char, blob, etc., but I needed to add zoned numeric. To begin,
********** Beginning of data *************************************
A R REC
A ECNUM 16S 0 COLHDG('NUMBER')
A ALIAS(EC_NUMBER)
A ECALPHA 32A COLHDG('ALPHA')
A ALIAS(EC_ALPHA)
************* End of data ****************************************
The program from the link above allows for several SQL types, clob,
addingstudied and stepped through the program to see what it was doing, and
thought I had a good understanding of how it worked. I then started
awhat appeared as necessary for the SQL_TYP_ZONED (488).
When I send the 'ALTER TABLE' command and set the FieldProc program on
Anycolumn, the first call is to Register(function code: 8), the next is
Encode(function code: 0) to encode the values in said column.
I set a breakpoint at the end of the program, and evaluated theparameters when setting the FieldProc on a VARCHAR and ZONED NUMERIC
columns, and besides being different data types all appears correct, but
the ZONED NUMERIC column abruptly stops with the error below after the
register call.
Message ID . . . . . . : SQL0685data.
Date sent . . . . . . : 03/18/20 Time sent . . . . . . : 16:17:04
Message . . . . : Field procedure on column ECNUM has returned invalid
Cause . . . . . : Field procedure on column ECNUM has returned invaliddata.
Recovery . . . : Change the field procedure to return valid data.is for the sole use of the intended recipient(s) and may contain
Thank you in advance for any help you can give on this.
Thanks,
Nathan Hughes
Software Developer
[BadgePass]
601.499.2131 Office
280 Trace Colony Park
Ridgeland, MS 39157
CONFIDENTIALITY NOTICE: This e-mail message, including any attachments,
confidential and privileged information or otherwise protected by law.
youunauthorized review, use, disclosure or distribution is prohibited. If
are not the intended recipient, please contact the sender by reply
and destroy all copies of the original message.
--
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@xxxxxxxxxxxx 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@xxxxxxxxxxxx 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.
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.