dbg_obj_print takes a variable number of any type.
None
dbg_obj_print prints a variable number of arguments onto the system console (stdout) of Virtuoso server, each argument in its own native format, on the same line, which is followed by one newline.
SQLState | Error Code | Error Text | Description |
---|---|---|---|
... declare vec any; vec := vector ('a', 'b', 'c'); dbg_obj_print (vec) ...
Would output this on the console:
("a" "b" "c" )