Keyword changes: Difference between revisions
From NEOSYS Dev Wiki
Jump to navigationJump to search
(New page: === DELETE become DELETERECORD === "delete" is a reserved keyword for c++ so delete filename,key becomes deleterecord(filevar,key) or in oo style filevar.deleterecord(key) === CH...) |
|||
Line 1: | Line 1: | ||
== | == Keyword changes == | ||
"delete" | The standard pick keyword "delete" and "char" are reserved keywords in C++ and have to be substituted. | ||
delete | === DELETE() become erase === | ||
xxx=delete(yyy,fieldno,valueno,subvalueno) | |||
becomes | |||
xxx=erase(yyy,fieldno,valueno,subvaluen) | |||
or in oo style | |||
xxx=yyy.erase(fieldno,valueno,subvaluen) | |||
=== DELETE become deleterecord === | |||
delete filevar,key | |||
becomes | becomes |
Revision as of 17:34, 2 April 2009
Keyword changes
The standard pick keyword "delete" and "char" are reserved keywords in C++ and have to be substituted.
DELETE() become erase
xxx=delete(yyy,fieldno,valueno,subvalueno)
becomes
xxx=erase(yyy,fieldno,valueno,subvaluen)
or in oo style
xxx=yyy.erase(fieldno,valueno,subvaluen)
DELETE become deleterecord
delete filevar,key
becomes
deleterecord(filevar,key)
or in oo style
filevar.deleterecord(key)
CHAR() becomes CHR()
"char" is a reserved keyword in c++ so
charx=char(intvar)
becomes
charx=chr(intvar)
or in oo style
charx=intvar.chr()