Database Connection String
	
Determine the database type and connect string used to connect to the database of the Integrated Application.
Valid database types are:
    - mssql – Microsoft SQL Server
 
    - oracle – Oracle
 
    - oledb – generic OLEDB connection
 
    - odbc – generic ODBC connection
 
    - Mongo Db – Mongo NoSql Databases
 
Sample Microsoft SQL Server Connect Strings
    - Database=xdoc;Server=yourSqlServer\sqlServerInstance;Integrated Security=SSPI;Max Pool Size=10;Pooling=true;
 
    - uid=xdoc;pwd=$$password$$;database=xdoc;server=yourSqlServer\sqlServerInstance;Max Pool Size=10;Pooling=true;
 
    - uid=xdoc;pwd=$$password$$;database=xdoc;server=yourSqlServer,port;Max Pool Size=10;Pooling=true;
 
Sample Oracle Connect Strings
    - User Id=xdocclient;Password=$$password$$;Data Source=xdoc;
        
            - Note: DataSource is the TNSNAMES alias