by Peter Gallagher >> Fri, 24 Mar 2000 4:53:04 GMT
Hi, looking for someone who might know how to get the ExternalDatabase connection working for Visual FoxPro. I know that this is one of the Jade Unsupported "OEM" databases, however that has not stopped us connecting to other non-supported ODBC sources in the past.
The External Database wizard works fine - The problem comes when actually trying to get the data from inside a method
E.g. using an external Customer Table
vars
exDB : ExternalDatabase;
exCustomerSet : ExCustomerSet;
exCustomer : ExCustomer;begin
exDB := app.getExternalDatabase("ExternalDB");
exDB.open;
create exCustomerSet;
foreach exCustomer in exCustomerSet do
endforeach;
exDB.close;
end;
This doesn't work, like it does for ODBC links that we do have working...
Error Code 8000, ODBC error HYC00
Any thoughts...
Peter Gallagher