Syntax to access fields in external dll in Updatable BAQ

within a the Updatable BAQ Method Directive, I am calling an external BAQ. The method signature is:

public void FieldUpdate(
Ice.Tablesets.DynamicQueryTableset queryDS,
ref System.String fieldName,
System.Data.DataSet queryResultDataset, Ice.Tablesets.ContextTableset ctx)

I need to access fields within the queryDS Tableset. Can anyone provide the syntax to do this?

thank you.

When you say you are calling an External BAQ you mean you want to execute one?

no. This is an updatable BAQ. The update method of this updatable BAQ invokes an external method in a custom DLL.

The signature is for the method within the DLL that I am invoking. In my original question, I thought the BAQ data would be in the queryDS, but Now I believe it is in the queryResultDataset.

I since this is a standard dataset, I was able to get the information I needed.

thanks,

Bruce