使用ADO.NET获取数据集的 *** 作:
using(var con = new System.Data.SqlClient.SqlConnection("Data Source=服务器Initial Catalog=数据库名uid=用户名pwd=密码")){
con.Open()
var cmd = con.CreateCommand()
cmd.CommandText = " SQL查询语句 "
using(var reader = cmd.ExecuteReader())
{
while(reader.Read())
{
//从reader中取出数据并作相应的类型转换
}
}
}
ASP.NET程序中的web.config中的连接字符串为: <add name="Conn" connectionString="server=.uid=sapwd=seeyondatabase=Dsystem" />,name是指的在程序写好的链接数据库的方法名,connectionString中就是我们与数据库连接配置参数:server表示数据库服务器的名字和IP地址,uid是指数据库的用户名,pwd是数据库登录密码,database是指数据库的名字。
ASP.NET程序与sql server 2005数据库连接不单是需要在配置文件中配置好数据库名、用户名、密码、IP地址。还需要在程序中也要写好与数据库的连接方法,然后在web.config中来调用才能正常连接,这样程序在使用过程中才不会报与数据库连接错误。
1、ASP.NET程序与sql server 2005数据库连接方法代码:(注:与数据库连接的方法有很多,但是都是大同小异)
using Systemusing System.Collections.Generic
using System.Text
using System.Data
using System.Configuration
using System.Data.SqlClient
using System.Data.OleDb
using System.Data.Sql
namespace DLL
{
public class DBHelper
{
public static string conn = ConfigurationManager.ConnectionStrings["Conn"].ToString()
//public static string conn =ConfigurationManager.AppSettings["SqlConnString"].ToString()
static SqlConnection con = null
/// <summary>
/// 判断数据库连接状态
/// </summary>
/// <returns></returns>
public static SqlConnection getConnection()
{
try
{
if (con == null)
{
con = new SqlConnection(conn)
}
if (con.State == ConnectionState.Broken)
{
con.Close()
con.Open()
}
if (con.State == ConnectionState.Closed)
{
con.Open()
}
}
catch (Exception ex)
{
throw ex
}
return con
}
public static SqlCommand NewMethod(string sql, SqlParameter[] par)
{
SqlCommand com = new SqlCommand(sql, getConnection())
if (par != null)
{
foreach (SqlParameter parameter in par)
{
if (parameter.Value == null)
{
parameter.Value = DBNull.Value
}
com.Parameters.Add(parameter)
}
}
return com
}
public static DataSet Dataset(string sql, SqlParameter[] par, string tableName)
{
DataSet set = new DataSet()
SqlCommand comm = NewMethod(sql,par)
if(tableName==null || tableName=="")
{
tableName = "tableName"
}
SqlDataAdapter dapter = new SqlDataAdapter(sql, getConnection())
dapter.Fill(set,tableName)
return set
}
public static DataTable Table(string sql, SqlParameter[] par, string tableName)
{
DataTable table = new DataTable()
try
{
table = Dataset(sql, par, tableName).Tables[0]
return table
}
catch (Exception ex)
{
throw ex
}
}
public static SqlDataReader Reader(string sql,SqlParameter[] par)
{
SqlDataReader red = null
SqlCommand comm = NewMethod(sql,par)
try
{
red = comm.ExecuteReader()
}
catch (Exception ex)
{
red.Close()
con.Close()
throw ex
}
return red
}
public static int Execut(string sql, SqlParameter[] par)
{
int num = 0
SqlCommand com = NewMethod(sql, par)
try
{
num = com.ExecuteNonQuery()
}
catch (Exception ex)
{
num = 0
}
con.Close()
return num
}
}
}
2、web.config配置文件的连接代码为:
<?xml version="1.0" encoding="UTF-8"?><!--
注意: 除了手动编辑此文件外,您还可以使用
Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
“网站”->“Asp.Net 配置”选项。
设置和注释的完整列表可以在
machine.config.comments 中找到,该文件通常位于
\Windows\Microsoft.Net\Framework\vx.x\Config 中
-->
<configuration>
<appSettings>
</appSettings>
<!-- 数据库连接字符串-->
<connectionStrings>
<add name="Conn" connectionString="server=.uid=sapwd=seeyondatabase=Dsystem" />
</connectionStrings>
<system.web>
<!--
设置 compilation debug="true" 可将调试符号
插入已编译的页面中。
但由于这会影响性能,因此请仅在开发过程中将此值
设置为 true。
-->
<compilation debug="true">
</compilation>
<!--
通过 <authentication> 节可以配置
安全身份验证模式,ASP.NET
使用该模式来识别来访用户身份。
-->
<authentication mode="Windows" />
<!--
如果在执行请求的过程中出现未处理的错误,
则通过 <customErrors> 节
可以配置相应的处理步骤。具体而言,
开发人员通过该节可配置要显示的 html 错误页,
以代替错误堆栈跟踪。
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
</system.web>
<system.webServer>
<defaultDocument>
<files>
<add value="Login.aspx" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
和SQL数据库差不多的,下面是我用vb6.0连接本地mysql数据库的连接字符串
"driver={MySQL ODBC 3.51 Driver}server=127.0.0.1database=mysqluid=rootpwd=sasa"欢迎分享,转载请注明来源:内存溢出
评论列表(0条)