#include "SaRnHtml.h"
void SaPopulateTableMsgBox(Widget list, XtPointer client_data, SaCallbackStruct *cbs);
client_data
argument is used as the title of the returned HTML stream. This population routine uses the HTML table element which is not supported by all client browsers.
/*** the following ad-hoc example can be used without
templates **/
SaCallbackStruct *cbs;
cbs = SaExecSQL("CEZANNE", "pubs2", SGESYBASE, "select *
from authors");
SaPopulateTableMsgBox(NULL, NULL, cbs);
SaFreeCbs(cbs);