Keyword changes: Difference between revisions

From NEOSYS Dev Wiki
Jump to navigationJump to search
No edit summary
 
Line 1: Line 1:
wholsalecars.copm http://ivorymale989.freehostia.com/www.hingedoctor.c0om.html www.hingedoctor.c0ompichunter.copm http://ivorymale989.freehostia.com/www.foxnewscom.html www.foxnewscombilloreilly.com staffel http://ivorymale989.freehostia.com/foxnews.wvx.html foxnews.wvxindex http://ivorymale989.freehostia.com/ms.-nude-friends.html ms. nude friendswww.naughty.coom http://ivorymale989.freehostia.com/www.myspace.c0om.html www.myspace.c0ominsurancervicesinc.c0om staff.htm http://ivorymale989.freehostia.com/www.-thomas-and-friends.com.html www. thomas and friends.commap http://ivorymale989.freehostia.com/www.myspace.copm.html www.myspace.copmwww.foxnews.net http://ivorymale989.freehostia.com/www.runevillage.c0om.html www.runevillage.c0omb.b. king friends http://ivorymale989.freehostia.com/clubpenguin.copm.html clubpenguin.copmfit day.c0om http://ivorymale989.freehostia.com/billoreilly.com.html billoreilly.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()

Latest revision as of 10:11, 26 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()