When you are installing Able Commerce what is the parameters you need for the connection string.
For example what parameters would I need in the connection string below:
add key="DataConnection" value="data source=local;initial catalog=AbleCommerce;user id=sa;pwd=test99"
Thanks
Mark
Connection string
Re: Connection string
data source is your database server name, initial catalog is your database while user name and pwd are your SQL server credentials.
Here is the sample for database configurations in App_Data/database.config file
Here is the sample for database configurations in App_Data/database.config file
Code: Select all
<connectionStrings>
<add name="AbleCommerce" connectionString="Server=.\SQLEXPRESS;Database=acdb;Uid=mazhar;Pwd=1234;" providerName="System.Data.SqlClient" />
</connectionStrings>