在web.config中使用SQL2005是这样使用的: web.config: connectionStrings add name="win2009ConnectionString" connectionString="Data Source=COMPUTER;Initial Catalog=win2010;Integrated Security=True" providerName="System.Data.SqlClient"/ /conne
在web.config中使用SQL2005是这样使用的:
web.config:
调用:
public SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["win2009ConnectionString"].ConnectionString);
在winform项目中:
app.config:
providerName="System.Data.OleDb" />
求教:怎么调用winform 中的ACCess的连接,先谢谢!