M
mmj
I have a DataViewManager created from a DataSet that had 2 tables and a
relationship.
Table(0)
--CustomerID
--CustomerName
--CustomerAddress
Table(1)
--OrderID
--CustomerID
--OrderDate
--OrderTotalAmount
All customer and their associated order records are in these tables, I am
being passed a string that could look like any of the following,
"CustomerID = '100'"
"CustomerID = '50' AND OrderDate = '1/1/2002'"
"OrderTotalAmount > '1000.00'"
etc....
and I am trying to find the best way to filter the data, then loop through
it so I can return it to the calling app, in a custom format.
Is the DataViewManager the best way to deal with this?
---All suggestions and sample code appreciated.
mmj
relationship.
Table(0)
--CustomerID
--CustomerName
--CustomerAddress
Table(1)
--OrderID
--CustomerID
--OrderDate
--OrderTotalAmount
All customer and their associated order records are in these tables, I am
being passed a string that could look like any of the following,
"CustomerID = '100'"
"CustomerID = '50' AND OrderDate = '1/1/2002'"
"OrderTotalAmount > '1000.00'"
etc....
and I am trying to find the best way to filter the data, then loop through
it so I can return it to the calling app, in a custom format.
Is the DataViewManager the best way to deal with this?
---All suggestions and sample code appreciated.
mmj