Here is a sacrilegious question. I have been a long time FP programmer and, for business reasons, have had to start adding VB to my resume.
I am working on converting a FPW application to the Visual world and need help with ODBC. I am figuring that you, as VFP gurus, have lots of experience with this issue and might consider helping me.
I can connect to the FP tables (free tables) and retrieve the appropriate records with an SQL Statement via the ADODBC.Connect, ADODBC.Open, ADODBC.Execute process into a Recordset.
But now, instead of bringing the data into a recordset, I want to immediately write it out to a new, temporary table for subsequent processing.
In FP the SQL statement is EASY and it works as expected.
SELECT <whatever> FROM <tables> INTO TABLE <result>
BUT when I use a string like that in my ADODBC SQL string, while it executes without error, no new table is created.
Can someone shed some light on what is wrong (aside from my working in VB instead of VFP).
Any assistance/suggestions you can provide will be greatly appreciated.
Thanks,
I_Forgot
I am working on converting a FPW application to the Visual world and need help with ODBC. I am figuring that you, as VFP gurus, have lots of experience with this issue and might consider helping me.
I can connect to the FP tables (free tables) and retrieve the appropriate records with an SQL Statement via the ADODBC.Connect, ADODBC.Open, ADODBC.Execute process into a Recordset.
But now, instead of bringing the data into a recordset, I want to immediately write it out to a new, temporary table for subsequent processing.
In FP the SQL statement is EASY and it works as expected.
SELECT <whatever> FROM <tables> INTO TABLE <result>
BUT when I use a string like that in my ADODBC SQL string, while it executes without error, no new table is created.
Can someone shed some light on what is wrong (aside from my working in VB instead of VFP).
Any assistance/suggestions you can provide will be greatly appreciated.
Thanks,
I_Forgot