Provides programmatic access to the information displayed by the dblocate utility, listing all the SAP Sybase IQ database servers on the local network that are listening on TCP/IP.
unsigned int db_locate_servers( SQLCA * sqlca, SQL_CALLBACK_PARM callback_address, void * callback_user_data );
1 if successful; 0 otherwise.
The callback function must have the following prototype:
int (*)( SQLCA * sqlca, a_server_address * server_addr, void * callback_user_data );
The callback function is called for each server found. If the callback function returns 0, db_locate_servers stops iterating through servers.
The sqlca and callback_user_data passed to the callback function are those passed into db_locate_servers. The second parameter is a pointer to an a_server_address structure. a_server_address is defined in sqlca.h, with the following definition:
typedef struct a_server_address { a_sql_uint32 port_type; a_sql_uint32 port_num; char *name; char *address; } a_server_address;