Hello World
This is my first post. Im a complete newbie in the foxpro world.
The project I am doing entails upsizing a standalone foxpro system to a client/server system with SQL2000 as the backend.
I am now working with remote views to update some tables.
The view is called Temphr
-All fields are updatable
-the type of update is Key fields only
-Send SQL Updates check box is checked
-Update Using: is set to SQL UPDATE
-the buffering mode is set to 3
All Im doing is running the following code
"USE temphr
REPLACE ALL temphr.some_numeric_field WITH 666"
The code runs without errors but the temphr table(on SQL server) remains
unaffected.
I just cannot figure out what is going on here.
And by the way ..
"USE temphr
UPDATE temphr SET some_numeric_field= 666"
this code works.
Any help would be appreciated
This is my first post. Im a complete newbie in the foxpro world.
The project I am doing entails upsizing a standalone foxpro system to a client/server system with SQL2000 as the backend.
I am now working with remote views to update some tables.
The view is called Temphr
-All fields are updatable
-the type of update is Key fields only
-Send SQL Updates check box is checked
-Update Using: is set to SQL UPDATE
-the buffering mode is set to 3
All Im doing is running the following code
"USE temphr
REPLACE ALL temphr.some_numeric_field WITH 666"
The code runs without errors but the temphr table(on SQL server) remains
unaffected.
I just cannot figure out what is going on here.
And by the way ..
"USE temphr
UPDATE temphr SET some_numeric_field= 666"
this code works.
Any help would be appreciated