Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
We have a VfpDataSourceItem that can directly talk to a VFP database. However, if you want most of your calculations to be in VFP, when you'll most likely want them to be in stored procedures in the dbc or in .prgs that are visible from the dbc. Then, you can use the BusinessLayer.FillByStoredProcedure to retrieve the values from the sprocs or the DbDataSourceItem.ExecuteStoredProcedure() method to call sprocs directly. Other than that, if you need to interface with VFP, you'll need to write some sort of COM or use some sort of cross-process communication; named pipes are ugly in VFP, so we generally use UDP across the loopback if we need cross-process communication.
|