|   | ![[ Previous ]](navbprev.gif)  ![[ Contents ]](navbhome.gif)  ![[ Index ]](navbhelp.gif)  ![[ Next ]](navbnext.gif)  | 
Sends a character message (string) to the client.
void Ns_PdSendString(char *string);
This function sends a string to the client. It is usually used by DBMS proxy daemons to send an OK_STATUS or to send various other data (e.g., other types of status messages, row counts for functions that return table data, etc.).
    char buf[100];
    count = 10;
    sprintf(buf, "%d", count);
    Ns_PdSendString(buf);