Connection Block Header

The "Connection" command starts the block of commands that defines database connection information. The block can contain following commands: connection type, user, password, owner, database, DSN.

Syntax:
Connection

Note: connection definition is required even "No Exec" project property is 'true'. The pattern engine requires active connection in any case.

Example:

 Connection
  Type="ODBC"
  DSN="NorthWind"
  User="sa"
  Password="sa-pwd"
  Owner="dbo"
  Database="NorthwindOriginal"