Get Client IP Address in Power Builder
February 28th, 2008
Sometime we need to get the client IP Address. Usually in “login window” to validate the access right of the user. We can use following SQL statement to get that information :
ls_ip_address
select connection_property(’nodeaddress’)
into : ls_ip_address
from dummy
using sqlca;
Inlinks :







