|
RelateMany |
|
package Selection;
import j4d.open.*;
class Examplet {
/* doRelateMany make a selection on the target table
*/
public void doRelateMany(opProcess process, int targetTable, int targetField) throws opException {
try{
process.RelateMany(new opField(targetTable, targetField));
}
catch (opException er){throw er;}
}
}
|
RelateMany |
|