Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Update vs. insert
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00537366
Message ID:
00537375
Views:
26
>why does the insert work without errors but the update doesn't?
>
>the error says that 'alias text2 not found'
>
> update customers set company = thisform.text2.value ;
> where custno = thisform.text1.value
>
>
>
> insert into customers(company) values (thisform.text2.value)

VFP is being confused by the periods in the values thinking that text2 refers to a table and field like TableName.FieldName You might want to put the value in a local variable and use it for the insert.

lFieldValue = thisform.text2.value
insert into customers(company) values (lFieldValue)
Bret Hobbs

"We'd have been called juvenile delinquents only our neighborhood couldn't afford a sociologist." Bob Hope
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform