Skip to content
The latest version of DbVisualizer was released 2024-03-11DOWNLOAD HERE ->

Writing to the Log Tab

You can use the @echo client side command to write information to the Log tab.

@echo <message>

The message may contain DbVisualizer variables, e.g. one of the predefined variables.

@echo Today is ${dbvis-date}$ and the time is ${dbvis-time}$

Variables can also be used to display values produced by executing a function or stored procedure:

@call ${STATUS||(null)||String||noshow dir=out}$ = "HR"."GET_STATUS"(1002);
@echo STATUS: ${STATUS}$;