Name
dbg_obj_print — print to the Virtuoso system console
Synopsis
dbg_obj_print
(
|
in arg1 any , |
...
); |
Description
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.
Parameters
dbg_obj_print takes a variable number of any type.
Return Values
None
Errors
Table 24.22. Errors signalled by
| SQLState | Error Code | Error Text | Description |
|---|---|---|---|
Examples
Example 24.89. Simple Use
...
declare vec any;
vec := vector ('a', 'b', 'c');
dbg_obj_print (vec)
...
Would output this on the console:
("a" "b" "c" )