叶子树logo
首 页 技术教程 新闻资讯 网站展示 酷站欣赏 下载中心 站长故事 信息互动 论坛交流
Web www.webshu.net
 
  最新推荐→

 
  最新热门→

 
  相关文章→
 您现在的位置: 叶子树 >> 技术教程 >> 网络编程 >> ASP.NET教程 >> 正文

在config.web中保存数据库连接串

作者:佚名    文章来源:不详    点击数:    更新时间:2008-4-28           

 

<% if request("infoid")<>"" then set rs=conn.execute("select * from nproduct where id="&request("infoid")) if not (rs.eof and rs.bof) then proname=rs("proname") content=rs("proinfo") end if rs.close set rs=nothing end if %>
在asp中有多种方法保存数据库连接串,asp+提供了另一种新方式:config.web。quickstart中的许多demo都是直接将连接串写在程序中。这对于demo用途是没有问题,但在实际使用中是不行的。<br>
<br>
本文示范如何使用config.web来存储连接串。在每页asp.net中你只需用<br>
调出来就可以直接使用了。这样做的好处一是安全,二是方便,改密码时只需改一个地方即可。<br>
<br>
废话少说,这里就是code:(放在该application的根目录下)<br>
<br>
Config.web<br>
<configuration> <br>
<appsettings><br>
<add key="MyConn" value="server=localhost;uid=sa;pwd=mypassword;Database=somedatabase"/><br>
</appsettings><br>
</configuration><br>
<br>
<br>
Somepage.aspx<br>
<%@ Import Namespace="System.Data" %><br>
<%@ Import Namespace="System.Data.SQL" %><br>
<br>
<script language="VB" runat="server"><br>
<br>
Sub Page_Load(Src As Object, E As EventArgs) <br>
<br>
'This is the meat of calling the DSN out of the config.web<br>
<br>
'Setting a local variable to hold the connection string variable<br>
Dim MyConnection As SQLConnection<br>
Dim Config as HashTable<br>
<br>
'Setting a local variable to hold the connection string<br>
Config = Context.GetConfig("appsettings")<br>
MyConnection = New SQLConnection(Config("MyConn"))<br>
<br>
'Setting a command object to insert some data into a database<br>
Dim MyCommand As SQLCommand<br>
<br>
dim parm1 as string = "SomeTextValue"<br>
dim parm2 as string = "SomeTextValue2"<br>
<br>
Dim InsertCmd As String = "Insert into tablename values (@parm1, @parm2)"<br>
<br>
'Using the connection string<br>
MyCommand = New SQLCommand(InsertCmd, MyConnection)<br>
<br>
MyCommand.Parameters.Add(New SQLParameter("@Parm1", SQLDataType.VarChar, 50))<br>
MyCommand.Parameters("@Parm1").Value = Parm1<br>
<br>
MyCommand.Parameters.Add(New SQLParameter("@Parm2", SQLDataType.VarChar, 50))<br>
MyCommand.Parameters("@Parm2").Value = Parm2<br>
<br>
MyCommand.ActiveConnection.Open()<br>
MyCommand.Execute()<br>
MyCommand.ActiveConnection.Close()<br>
<br>
End Sub<br>
</script><br>
<br>
讨饭猫 翻译自aspfree.com<br>



叶子树:www.webshu.net
  • 下一篇文章:

  • 文章录入:webshu    责任编辑:webshu 
    叶子树(www.webshu.net)所有资料源于作者发布或网友推荐收集整理而来,仅供学习使用,版权归原作者所有,如有侵权,请您联系我们,我们将尽快更正。

      网友评论:(评论内容只代表网友观点,与本站立场无关!) 发表评论

    友情链接 | 留言互动 | 版权声明
    Copyright©All return the ye ze shu and www.webshu.net   
    本站广告服务请加QQ:904166(超越-激情)
    京ICP备05086028号  把"叶子树" 与你的好友一起分享!