Database Connection String
Defines 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
- ado – generic ado data providers for any database
- oledb – generic OLEDB drivers for any database
- odbc – generic ODBC drivers for any database
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: In this example, DataSource is the TNSNAMES alias.