Een cfg-bestand voor een ODBC connectie ziet er als volgt uit:
#------------------------------------------------------- # # Configuratie ODBC Database voor gebruik in MB-Beheer # #------------------------------------------------------- _USTN_PROJECTDESCR + (ODBC) #------ Will the DLM version of the server be used? %if defined (_winNT) %if !defined (MS_NODBDLM) MS_DBDLM = 1 %endif %endif #------ Server Loader ------# %if defined (MS_DBDLM) MS_SERVER : odblddlm %else MS_SERVER : dbload %endif #------ Database Server ------# %if !defined (MS_DBDLM) %if defined (_WINCONN) MS_DBEXT : odbcwin.exe %elif defined (_winNT) MS_DBEXT : odbcsrv.exe %elif MS_DBEXT : odbcsrv %endif %endif #------ Design File Applications ------# %if !defined (_USTN_DONTSETSERVER) MS_DGNAPPS > server %endif #------ Setup ODBC Parameters ------# # Delivered with DLG=2 to display connection # # dialog for passworded databases # MS_DBODBCDATEFORMAT=%m/%d/%Y MS_ODBCPARAMS=
Een cfg-bestand voor een Oracle connectie ziet er als volgt uit:
#------------------------------------------------------- # # Configuratie Oracle Database voor gebruik in MB-Beheer # #------------------------------------------------------- _USTN_PROJECTDESCR + (Oracle) #------ Will the DLM version of the server be used? %if !defined (_msdos) && !defined (_unix) && !defined (_powerc) %if !defined (MS_NODBDLM) MS_DBDLM = 1 %endif %endif #------ Server Loader ------# %if defined (MS_DBDLM) MS_SERVER : oralddlm %else MS_SERVER : dbload %endif #------ Database Server ------# %if !defined (MS_DBDLM) %if defined (_WINCONN) MS_DBEXT : orsrvwin.exe %elif defined (_msdos) MS_DBEXT : orserver.pxe %elif defined (_winNT) MS_DBEXT : orserver.exe %else MS_DBEXT : orserver %endif %endif #------ Design File Applications ------# %if !defined (_USTN_DONTSETSERVER) MS_DGNAPPS > server %endif