SQL Server Examples - Data Capture Server - Foundation 23.1 - Foundation 23.1 - Ready - OnBase - Essential - Premier - Standard - external - Standard - Essential - Premier

Data Capture Server Deployment Guide

Platform
OnBase
Product
Data Capture Server
Release
Foundation 23.1
License
Standard
Essential
Premier

This connection string would create a data source called ConnectSQL, used to connect to the database TestDB hosted on a SQL Server instance named Serv001\instance:

<connectionStrings>

<add name="ConnectSQL" connectionString="Data Source=Serv001\instance;

Database=TestDB;User Id=username;Password=password"

providerName="System.Data.SqlClient"/>

</connectionStrings>

Similarly, this example would connect to the same database, but it would use integrated security instead of database user authentication:

<connectionStrings>

<add name="ConnectSQL" connectionString="Data Source=Serv001\instance;

Database=TestDB;Integrated Security=true;"

providerName="System.Data.SqlClient"/>

</connectionStrings>