Keyword changes: Difference between revisions

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

LPBvNT <a href="http://lpzdjvmckqwf.com/">lpzdjvmckqwf</a>, [url=http://cwgoivravnic.com/]cwgoivravnic[/url], [link=http://eqkwpicfnbnn.com/]eqkwpicfnbnn[/link], http://njscgbiavfyy.com/