Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Data not saved & TABLEUPDATE() return saved status-it's
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00414130
Message ID:
00416203
Views:
29
Here's the code to make updatable on the fly...

cd c:\temp
create database tester
create table testertable (iid i(4), cfirstname c(25), clastname c(25))
create sql view lv_testertable as select * from testertable

use lv_testertable nodata

cursorsetprop("SendUpdates", .T.) && This makes it updatable

insert into lv_testertable (iid, cfirstname, clastname);
values(2, "My First Name", "My Last Name")

=tableupdate()
Previous
Reply
Map
View

Click here to load this message in the networking platform