Creates the business object array that contains one or more elements, each element having a specified business object as its type.
Syntax
IBusinessObjectArray IcreateBusinessObjectArray(string busObjName);
Parameters
Return Values
An IBusinessObjectArray object to hold the new business object array.
Exceptions
Notes
The Server Access Methods creates a business object array and sends it back to the access client. The IcreateBusinessObjectArray() method returns an IBusinessObjectArray object. Other methods in the IBusinessObjectArray interface allow you to manipulate the business object array.
Example
The following example creates a business object array:
// Declare the array IBusinessObjectArray exampleObjArray = null; // Create the business object array that holds "CustomerAcct" // business objects exampleObjArray = accessSession.IcreateBusinessObjectArray("CustomerAcct");