My foxpro9 table name : C:\TEMPFILES\wash_factory
My sql server table name : MIS.dbo.wshPara
sql table MIS.dbo.wshPara,
foxpro9 table C:\TEMPFILES\wash_factory,
I used below code in foxpro9 ,
After run my foxpro form I got this below error,
I want to get wash table as below,
SQL table MIS.dbo.wshPara,
How can I fix this error.
My sql server table name : MIS.dbo.wshPara
sql table MIS.dbo.wshPara,
Code:
nParaID nParaNo nParaYear nParaCD
219 1 2021 vtmc
foxpro9 table C:\TEMPFILES\wash_factory,
Code:
nParaID nParaNo nParaYear nParaCD
219 2 2021 vtmc
I used below code in foxpro9 ,
Code:
stra="Update MIS.dbo.wshPara Set cParaNo= t2.cParaNo,cParaYear=t2.cParaYear,cParaCD=t2.cParaCD From MIS.dbo.wshPara t1 Inner Join wash_factory as t2 On t1 .nParaID= t2.nParaID"
SQLEXEC(hndOps,stra)
After run my foxpro form I got this below error,
I want to get wash table as below,
SQL table MIS.dbo.wshPara,
Code:
nParaID nParaNo nParaYear nParaCD
219 2 2021 vtmc
How can I fix this error.