| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 562 人关注过本帖
标题:ado.net数据库连接
取消只看楼主 加入收藏
isolated
Rank: 1
来 自:北京
等 级:新手上路
帖 子:23
专家分:0
注 册:2009-3-23
结帖率:0
收藏
已结贴  问题点数:0 回复次数:1 
ado.net数据库连接
紧急求助程序连接sqlserver2000数据库出现问题
    服务器配置:
    windowsxp
    framework2.0
    sqlserver2000
    出现如下错误:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (PRovider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)
    检查后发现是webconfig的配置问题,将server=local,改成本地计算机名,问题解决。
搜索更多相关主题的帖子: 服务器 windowsxp 数据库 
2011-06-05 17:04
isolated
Rank: 1
来 自:北京
等 级:新手上路
帖 子:23
专家分:0
注 册:2009-3-23
收藏
得分:0 
    经常需要在数据库与Execl之间互导数据。net时代,可以使用使用Microsoft.Jet.OleDb访问访问Excel,网上已经有很多类似的资源,最典型也是最简单的可能如下:(环境)
    // 连接字符串
    string xlsPath = Server.MapPath("~/app_data/somefile.xls"); // 绝对物理路径
    string connStr = "PRovider=Microsoft.Jet.OLEDB.4.0;" +
    "Extended Properties=Excel 8.0;" +
    "data source=" + xlsPath;
    // 查询语句
    string sql = "SELECT * FROM [Sheet1$]";
    DataSet ds = new DataSet();
    OleDbDataAdapter da = new OleDbDataAdapter(sql, connStr);
    da.Fill(ds);    // 填充DataSet
    // 在这里对DataSet中的数据进行操作
    // 输出,绑定数据
    GridView1.DataSource = ds.Tables[0];
    GridView1.DataBind();
    很简单吧?!一切就像操作数据库一样,只是需要注意的是:
    1。数据提供程序使用Jet,同时需要指定Extended Properties 关键字设置 Excel 特定的属性,不同版本的Excel对应不同的属性值:用于 Extended Properties 值的有效 Excel 版本。
    对于 Microsoft Excel 8.0 (97)、9.0 (2000) 和 10.0 (2002) 工作簿,请使用 Excel 8.0。
    对于 Microsoft Excel 5.0 和 7.0 (95) 工作簿,请使用 Excel 5.0。
    对于 Microsoft Excel 4.0 工作簿,请使用 Excel 4.0。
    对于 Microsoft Excel 3.0 工作簿,请使用 Excel 3.0。
    ref:http://msdn.*url=/library/CHS/dv_vbcode/html/vbtskcodeexamplereadingexceldataintodataset.asp

http://www.
2011-06-05 17:04
快速回复:ado.net数据库连接
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029867 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved