动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
   .Net → 阅读文章

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

作者来源: 
阅读 2176 人次 , 2006-2-15 14:32:00 

在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>


  
 本文Tags数据库  
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:黑客写出了针对.Net平台的反编译器
· 下一篇:ASP.NET编程中的十大技巧
· 强大的数组功能(asp+程序数组功能调用)
· Tomcat 暴露JSP文件内容
· JSP教程(七)-pluginAction的使用
· ASP.NET超凡的代码控制(二)
· 什么是受管(managed)?


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077