SQL/MX 3.1 Reference Manual (H06.23+, J06.12+)

SQL/MX Statements
HP NonStop SQL/MX Release 3.1 Reference Manual663850-001
2-279
C Example of SET CATALOG
C Example of SET CATALOG
Set the default catalog name with an SQL string literal:
EXEC SQL SET CATALOG 'mycatalog';
Set the default catalog name with an SQL identifier:
EXEC SQL SET CATALOG mycatalog;
COBOL Example of SET CATALOG
Set the default catalog name with an SQL string literal:
EXEC SQL SET CATALOG 'mycatalog' END-EXEC.
Set the default catalog name with an SQL identifier:
EXEC SQL SET CATALOG mycatalog END-EXEC.