|
Use PRINT to print variable values or constants. The PRINT statement applies only to Windows-based platforms. It is ignored on other operating system platforms.
You can use PRINT only within stored procedures.
The following example prints the value of the variable :myvar.
PRINT 'MYVAR = ' + :myvar;
The following example prints a text string followed by a numeric value. You must convert a number value to a text string to print the value.
|
Chapter contents
Prev topic: PUBLIC
|