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 Future consideration
Workspace IBM i
Categories IBM i Access Family
Created by Guest
Created on Oct 11, 2025

Run SQL Scripts - add "bind:" prefix/command like VScode/Db2i

Using ? parameter markers or :host-variables in ACS RSS is great, but the Db2i extension for VScode has implemented a "bind:" line-prefix / statement which helps a lot, when copying SQL statements from an RPG program source, to try them.

Here an example:

select * from table where col1 = ? and col2 = ?;
bind: 'ABC' 123;
bind: 'DEF' 456;

When the SQL statement is executed, it detects that a "bind:" line follows, and instead prompting for values, it uses the values on the "bind:" line separated by white-space and in the sequence they appear.

If a "bind:" line is executed, it should search backwards in the script, until it finds an executable SQL statement, and then bind the parameters/host-variables from the selected "bind:".

It also works with host variables:

select * from table where col1 = :var1 and col2 = :var2;
bind: 'ABC' 123;
bind: 'DEF' 456;

In addition it should also work with named bind parameters - which should override the sequence:

select * from table where col1 = :var1 and col2 = :var2;
bind: var2=123 var1='ABC';
bind: var1='DEF' var2=456;

And it should bind named parameters correctly by name - even when a :host-variable is used more than once.

select * from table where col1 = :var1 or col3 = :var1;
bind: var1='ABC';
bind: var1='DEF';

Here the value of "var1=" is used 2 times in the statement - even as it is only listed once in the "bind:" line.

This feature would help developers, copying SQL statements from SQLRPGLE programs - and it would be a great addition to RSS. It would also complement ideas IBMI-I-4651 and IBMI-I-4640.













Idea priority Medium
  • Guest
    Nov 5, 2025
    Thank you for submitting your Idea to enhance IBM i Access Client Solutions (ACS).
    We understand the request and will consider it for a future update though no commitment is made nor implied.

    IBM Power Systems Development