cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

When connecting to Sybase ASE there are connection parameters 'Host' (the machine name of the client) and 'AppName' (the name of the client application). Then while the application is connected, the entry in the sysprocesses table shows those values.

I would like to do the same thing for SQL Anywhere if it is possible. If it is possible, would the values appear in the same columns of sysprocesses?

My application is written in PowerBuilder.

View Entire Topic
Former Member

The HOST parameter may be picked up by the data provider. For the Application Name, you can specify this using the AppInfo connection parameter:

AppInfo Connection Parameter

APPINFO='MyApplication'

The value can be viewed as part of:

SELECT CONNECTION_PROPERTY('AppInfo'[,connection_id]);