Где установить имя провайдера в web. config или самой странице ?
If i set provider in sql connection string in web.config file ( providerName="System.Data.SqlClient") then should i also include "using System.Data.SqlClient" in page level coding. Can i write ado.net code without "using statement" in page by help of provider name specified in sql conn string in web.config? Please explain.
Что я уже пробовал:
Я написал providerName= " System. Data.SqlClient"
Я также включил "использование System. Data.SqlClient"
Bryian Tan
веб.конфиг. Пример.
<connectionStrings> <add name="MySqlConnection" connectionString="Data Source=Hello;User ID=test;Password=Pass;Initial Catalog=Table1;Integrated Security=True" providerName="System.Data.SqlClient" /> </connectionStrings>
Приложение выдает сообщение об ошибке или что-то в этом роде?