SQL/MX 3.x Reference Manual (H06.22+, J06.11+)

SQL/MX Statements
HP NonStop SQL/MX Reference Manual640322-001
2-235
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.