Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Saving a value to multiple tables
Message
From
24/02/2010 12:20:10
 
 
To
24/02/2010 12:16:24
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP2
Miscellaneous
Thread ID:
01450770
Message ID:
01450794
Views:
29
>>>>>Hello!
>>>>>im wondering about somethin. I have a clientID and it has a control source in a text box so when i save the client id gets saved in clients.clientid. im wondering is there a way i can send that to example books.clientid as well?like...give one text box 2 control sources?
>>>>
>>>>No, but you can do replace command in the textbox.InteractiveChange event (or in Valid event - may be better)
>>>>
>>>>replace ClientID with this.value in Books
>>>
>>>ah lemme try the top of my head again on this 1
>>>
>>>SELECT books
>>>SET order TO clientid
>>>SEEK globalclientid
>>>IF FOUND()
>>>replace books.clientID WITH clients.clientID
>>>ELSE
>>>ENDIF 
>>>
>>
>>You really should spend some time getting to learn the SQL commands. All this code can be replaced by ONE line if you use SQL syntax
>>Update books set clientID=clients.clientID where books.clientID=globalclientid
>
>welll.....i did SQL at scholl but not much...:D but thanks

SQL is usually faster and also safer than normal VFP code. And if you later plan to move your data to a real SQL server, most of the work is already done.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform