Home >Database >Mysql Tutorial >vs2008 链接 access数据库 问题

vs2008 链接 access数据库 问题

WBOY
WBOYOriginal
2016-06-07 15:43:441369browse

以前在vs2005 中类库项目中连接access数据库可以按照以下的方法写.只要在那个类库中引用 systen.web 命名空间 就可以... 现在我要用vs2008 链接access 数据库 .. 同样是多层架构... 在DAL类库中引入命名空间 systen.web 之后以下的写法就错误了.. 没有 HttpC

以前在vs2005 中类库项目中连接access数据库可以按照以下的方法写.只要在那个类库中引用 systen.web 命名空间 就可以...

现在我要用vs2008 链接access 数据库 .. 同样是多层架构...

在DAL类库中引入命名空间 systen.web 之后以下的写法就错误了.. 没有 HttpContext.Current.Server.MapPath  这个...

请问大家在VS2008 里边多层项目中是如何 链接 access的...

现在是凌晨6点06分..一晚上没睡觉..还是没搞出来.... 拜托了...

 

    

  string datapath = HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath) + "/databases/ekzhan.mdb"; ­

                string connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + datapath; ­

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn