AnthonyWhitehouse
Programmer
Greetings. I work with an older Foxpro system and have created a utility to extract data via setting ExportSQL = "Select......" and then
Set dbCompany = OpenDatabase(strDatabase, dbDriverComplete, False, "FoxPro 2.6")
Set RsTmp = dbCompany.OpenRecordset(ExportSQL, dbOpenDynaset)
This works fine for most of my data, which is in DBF tables in one Company Directory.
I would now like to include some data from a SQL Database. Is there any way to create a "pointer" in my Company Directory to the required SQL Table?
My hope is that I could then Join to it using the uniqueid that is common in both my DBF and SQL table.
Set dbCompany = OpenDatabase(strDatabase, dbDriverComplete, False, "FoxPro 2.6")
Set RsTmp = dbCompany.OpenRecordset(ExportSQL, dbOpenDynaset)
This works fine for most of my data, which is in DBF tables in one Company Directory.
I would now like to include some data from a SQL Database. Is there any way to create a "pointer" in my Company Directory to the required SQL Table?
My hope is that I could then Join to it using the uniqueid that is common in both my DBF and SQL table.