com.ssaglobal.bde
Interface IBdeSelection
- public interface IBdeSelection
The IBdeSelection interface helps define the attributes that should be selected when executing the request.
An instance of IBdeFilter can be created using BdeToolkit.
For Example. To select only ArrributeX and ArrributeX the following construct can be used:
IBdeSelection sel = BdeToolkit.getDefaultToolkit().createBdeSelection();
sel.addSelection("Order.ordernumber");
sel.addSelection("OrderLine.*");
or using typesafe proxies
IBdeSelection sel = BdeToolkit.getDefaultToolkit().createBdeSelection();
sel.addSelection(Order.ORDERNUMBER);
sel.addSelection(OrderLine.ALL);
|
Method Summary |
void |
addSelection(java.lang.String selectionAttribute)
Adds the specified attribute to the selection object. |
addSelection
public void addSelection(java.lang.String selectionAttribute)
- Adds the specified attribute to the selection object.
Note that the generated Bde proxies provide constants for these values.
- Parameters:
selectionAttribute - String which identifies a field in the BDE.
The exact strings are generated as constants in the typesafe proxies.
Visit the SSA Global website for more information.