The following sample use case scenarios show typical SQL compiler directives you might set for HCOSS applications:
Type of Program | Scenario | SQL Compiler Directive Options |
---|---|---|
COBOL | Connect to the database for full SQL syntax checking during compilation | SQL(DBMAN=ODBC, TARGETDB=MSSQLSERVER, DB=databaseName, [PASS=userid.password, ] BEHAVIOR=OPTIMIZED, DIALECT=MAINFRAME)1 |
COBOL | Do not connect to the database during compilation | SQL(DBMAN=ODBC, TARGETDB=MSSQLSERVER, BEHAVIOR=OPTIMIZED, DIALECT=MAINFRAME, NOCHECK)1 |
In the IDE, you compile applications by building the projects that contain them. When you build an HCOSS application, you must first set appropriate SQL compiler directive options, and in most cases, establish a connection to your SQL Server database.
userID.password
Before compiling, unless you have specified the SQL(NOCHECK) directive, you must be connected to the database specified by the DB directive via an ODBC connection.