How do I set the VFP settings to be used by DBFv4.1? For example I know how to set DELETED()...but, how do I set EXACT, EXCLUSIVE, and the rest of the SET settings?
Does DBFv4.1 pick up and use the foxuser.dbf or the config.fpw files?
Thanks!
Paul Hall
|
>Does DBFv4.1 pick up and use the foxuser.dbf or the config.fpw files?
It doesn't use it. It use the standard sql syntax.
>how do I set EXACT,
In sql, it's [i]like 'astring%'.
>EXCLUSIVE, and the rest of the SET settings?
In sql, it's lockType=VFP connection property, and LOCK TABLE sql.
|