Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
UPDATE - SQL using Form Control Values
Message
From
29/10/2007 08:06:31
Mike Yearwood
Toronto, Ontario, Canada
 
 
To
29/10/2007 00:23:24
Al Doman (Online)
M3 Enterprises Inc.
North Vancouver, British Columbia, Canada
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows Server 2003
Miscellaneous
Thread ID:
01264672
Message ID:
01264694
Views:
13
>I'm using the following UPDATE command in a form method:
>
>LPARAMETERS ;
>	tiSessID ;
>	, tiSitNo
>
>UPDATE Grads SET ;
>	cFName = ThisForm.txtcFName.Value ;
>	, cMInit = ThisForm.txtcMInit.Value ;
>	, cLName = ThisForm.txtcLName.Value ;
>	, cStreet = ThisForm.txtcStreet.Value ;
>	, cCity = ThisForm.txtcCity.Value ;
>	, cProvince = ThisForm.txtcProvince.Value ;
>	, cPostCode = ThisForm.txtcPostCode.Value ;
>	, cPhone = ThisForm.txtcPhone.Value ;
>	WHERE iSessID = tiSessID ;
>		AND iSitNo = tiSitNo
>
>All of the target table columns and form controls ( .txtc*.Value) exist. The control values are not NULL.
>
>When run, I get an error "Alias 'TXTCFNAME' is not found".
>
>If, for test purposes I replace the ThisForm.Control.Value(s) with string literal(s) the command works fine.
>
>Is this a known problem, that UPDATE - SQL can't make use of form control properties this way? Any workaround other than declaring local temp variables to hold the values? TIA.
>
>UPDATE: never mind - it's right in the VFP Help that you can't do this, and that you need to use local variables. One place where good ol' REPLACE helps out - it doesn't complain about using object properties ;)

Except that, as I keep trying to get across, by using properties, you are already taking a performance hit. Also you're leaving yourself open to worse, even difficult to debug, potentially drastic hits. Just add significant access/assign methods to those properties and watch things crawl.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform