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