19.0.0 released Nov 08, 2023 |
p-out <string> [ length <length> ] [ bytes-written [ define ] <bytes written> ]
char *mydata="Hello world"; p-out mydata
p-out "This is a non-encoded output<br/>" p-out "<hr/>"
void get_table_data (const char *table_name) { // // Construct the run-time text of dynamic SQL // write-string define qry_txt @select * from <<p-out table_name>> end-write-string }
write-string define qry_txt num bw; @select * from <<p-out table_name bytes-written bw>> end-write-string @Length of table name is <<p-num bw>>