Keyword changes: Difference between revisions

From NEOSYS Dev Wiki
Jump to navigationJump to search
Line 1: Line 1:
LPBvNT  <a href="http://lpzdjvmckqwf.com/">lpzdjvmckqwf</a>, [url=http://cwgoivravnic.com/]cwgoivravnic[/url], [link=http://eqkwpicfnbnn.com/]eqkwpicfnbnn[/link], http://njscgbiavfyy.com/
== 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()

Revision as of 10:42, 14 July 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()