The getDataMember and setDataMember methods of the Recordset class determine or set which object specified by setDataSource will be represented as a Recordset object, respectively. getDataMember has the following signatures:
getDataMember()
getDataMember(String s, com.ms.com._Guid guid)
setDataMember(String pbstrDataMember)
Determines which object specified by setDataSource will be represented as a Recordset object.
public String getDataMember();
public void setDataMember(String pbstrDataMember);
Returns a string value. The name is not case-sensitive.
The getDataMember and getDataSource methods must be used in conjunction with each other.
Determines which object specified by setDataSource will be represented as a Recordset object.
public com.ms.com.IUnknown getDataMember(String s, com.ms.com._Guid guid);
Returns a data member identifier.
s | A string. |
guid | A GUID. |
Sets which object specified by setDataSource will be represented as a Recordset object.
public void setDataMember(String pbstrDataMember);
pbstrDataMember | The DataSource object. |