Parameters
c | character that should be converted to integer |
Description
The Ord
function converts character to integer number according to the ASCII standard a easteuropean norm of representing national characters in Windows (cp 1250).
Function value
The function value is the code of the specified character.
Example (SQL):
display database tables
SELECT T2.tab_name,T1.obj_name AS applications
FROM OBJTAB T1, TABTAB T2
WHERE T1.APL_UUID=T2.APL_UUID AND (Ord(T1.category)=CATEG_APPL)
ORDER BY applications
See