Name
Ns_PdDbGetTypes -- Send the data types for the database
to the client.
Syntax
void Ns_PdDbGetTypes (void
*handle);
Description
This function sends a string of the data types for the
database with Ns_PdSendString.
Pseudo-code Example
#define DBMS_TYPES "text integer real boolean date time timestamp"
void
Ns_PdDbGetTypes(void *handle) {
Ns_PdLog(Trace, "gettypes:");
Ns_PdSendString(DBMS_TYPES);
}
|