nhatrangkhanhhoa
Programmer
- Feb 14, 2009
- 3
Dear all,
Kindly teach me how to use "&" (macro substitution) in Database Design?
Thanks
Kindly teach me how to use "&" (macro substitution) in Database Design?
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
As already suggested, chnanging table names is not something that is normally done.nhatrangkhanhhoa said:i want to change the name of the table each month
MyHandle = "Skip" & "Vought"
LOCAL lcFullPath
lcFullPath = SET("FULLPATH") && save current ON/OFF flag value
SET FULLPATH ON
* {do something}
* SET FULLPATH (lcFullPath) && would generate an error
SET FULLPATH &lcFullPath && reset prior setting
But in your example, lcFullPath is NOT a name expression, it's an ON or OFF keyword, part of the command.For example, many SET commands won't work using (name expressions)...
For example, many SET commands won't work using (name expressions)...
lnVal = 2
SET DECIMALS TO (lnVal)