Builder.DataConnection.FormatDbConnString C# (CSharp) Method

FormatDbConnString() private method

private FormatDbConnString ( ) : string
return string
        private string FormatDbConnString()
        {
            String oradb = "Data Source=(DESCRIPTION="
                + "(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST={0})(PORT={1})))"
                + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME={2})));"
                + "User Id={3};Password={4};";

            return String.Format(oradb,
                _oDbConfig.Get("Host"),
                _oDbConfig.Get("Port"),
                _oDbConfig.Get("Service"),
                _oDbConfig.Get("User"),
                _oDbConfig.Get("Pass"));
        }