Skip to Main Content
IBM Power Ideas Portal


This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Not under consideration
Workspace IBM i
Categories Languages - RPG
Created by Guest
Created on Sep 24, 2018

Enable Retrieval of SQL constraint violation error information in RPG program

Current RPG support requires programmers to use IBM i APIs plus considerable coding to determine what constraint has caused an error. For example, when using an SQL insert on table, where a check or foreign key constraint is used, a violation of the constraint doesn't readily provide sufficient information to notify the user in the program. A function or operation to immediately return the name of the constraint, would be ideal.


Use Case:

To illustrate this issue, one might read the article(s) previously written by Paul Tuohy, to show approaches to handle constraint violations. {https://www.itjungle.com/2018/09/05/guru-handling-constraint-violations-in-rpg/}. The amount of code required would be reduced if DB2 and RPG had a method to directly retrieve the constraint being violated from an SQL Communication area, a built-in function or an SQL Diagnostics area.


Idea priority Medium
  • Guest
    Reply
    |
    Oct 26, 2018

    IBM does not intend to provide a solution to this request at this time, so it is being closed.

  • Guest
    Reply
    |
    Sep 26, 2018

    Does the GET DIAGNOSTICS for CONSTRAINT_NAME not contain the information you're after?

  • Guest
    Reply
    |
    Sep 25, 2018

    If you read the article you'll see that SQLERRMC of the SQLCA contains the constraint name, so I don't understand your request as it is already available. In addition, the article contains the necessary procedures to handle this for native IO.

    BTW, coding API's is not something 'dirty', and once written in a procedure it can be reused by everyone without any effort.