#include "SaRnHtml.h"
void SaPopulateTextArea(Widget list, XtPointer client_data, SaCallbackStruct *cbs);
cbs
, this call concatenates columns, adding spaces to align columns. This alignment will only be seen by the HTML user when the site is surrounded by <PRE> </PRE> tags. After each row, a newline ("\n") is added. The following shows an HTML fragment for a text area:
<TEXTAREA NAME="TEXT" >"##Sa_Authors##"</TEXTAREA>
/*** the following ad-hoc example can be used without
templates ***/
SaCallbackStruct *cbs;
cbs = SaExecSQL("CEZANNE", "pubs2", SGESYBASE, "select * from authors");
/*** calls to set the beginning HTML context ***/
SaPopulateTextArea(NULL, NULL, cbs);
/*** calls to complete the HTML context ***/
SaFreeCbs(cbs);