用C#寫的ASP.NET數(shù)據(jù)庫操作類
作者:佚名
本文介紹一個用C#寫的ASP.NET數(shù)據(jù)庫操作類,以及其調(diào)用方法。
下面是用C#寫的ASP.NET數(shù)據(jù)庫操作類:
- using System;
- using System.Data;
- using System.Configuration;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Web.UI.HtmlControls;
- using System.Data.SqlClient;
- namespace Mysqlserver
- {
- /// < summary>
- /// SqlServerDataBase 的摘要說明
- /// < /summary>
- public class SqlServerDataBase
- {
- private string strError = null;
- private int intCount = 0;
- public SqlServerDataBase()
- {
- //
- // TODO: 在此處添加構(gòu)造函數(shù)邏輯
- //
- }
- /// < summary>
- /// 公開方法DBConn,返回數(shù)據(jù)庫連接
- /// < /summary>
- /// < returns>< /returns>
- public SqlConnection DBconn()
- {
- string strConn = "Server=(local);Database=GlobalMeetings;Uid=sa;pwd=";
- try
- {
- return new SqlConnection(strConn);
- }
- catch (Exception)
- {
- return null;
- }
- }
- /// < summary>
- /// 公開屬性ErrorMessage,返回錯誤信息
- /// < /summary>
- public string ErrorMessage
- {
- get
- {
- return strError;
- }
- }
- /// < summary>
- /// 根據(jù)查詢語句從數(shù)據(jù)庫檢索數(shù)據(jù)
- /// < /summary>
- /// < param name="strSelect">查詢語句< /param>
- /// < param name="SqlConn">數(shù)據(jù)庫連接< /param>
- /// < returns>有數(shù)據(jù)則返回DataSet對象,否則返回null< /returns>
- public DataSet Select(string SelectString, SqlConnection sqlConn)
- {
- strError = "";
- SqlConnection conn;
- if (sqlConn == null)
- {
- conn = DBconn();
- }
- else
- {
- conn = sqlConn;
- }
- try
- {
- //若數(shù)據(jù)庫連接的當(dāng)前狀態(tài)是關(guān)閉的,則打開連接
- if (conn.State == ConnectionState.Closed)
- {
- conn.Open();
- }
- SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();
- SqlCommand selectCommand = new SqlCommand(SelectString, conn);
- selectCommand.CommandType = CommandType.Text;
- mySqlDataAdapter.SelectCommand = selectCommand;
- DataSet myDS = new DataSet();
- mySqlDataAdapter.Fill(myDS);
- return myDS;
- }
- catch (Exception e)
- {
- strError = "數(shù)據(jù)檢索失敗:" + e.Message;
- return null;
- }
- finally
- {
- if (conn.State != ConnectionState.Closed)
- {
- conn.Close();
- }
- }
- }
- /// < summary>
- /// 更新數(shù)據(jù)庫
- /// < /summary>
- /// < param name="UpdateString">Update Sql語句< /param>
- /// < param name="SqlConn">數(shù)據(jù)庫連接< /param>
- /// < returns>更新成功返回true< /returns>
- public bool Update(string UpdateString, SqlConnection SqlConn)
- {
- return udiDataBase(UpdateString, SqlConn);
- }
- /// < summary>
- /// 從數(shù)據(jù)庫中刪除數(shù)據(jù)
- /// < /summary>
- /// < param name="DeleteString">Delete Sql語句< /param>
- /// < param name="SqlConn">數(shù)據(jù)庫連接< /param>
- /// < returns>刪除成功返回true< /returns>
- public bool Delete(string DeleteString, SqlConnection SqlConn)
- {
- return udiDataBase(DeleteString, SqlConn);
- }
- /// < summary>
- /// 把數(shù)據(jù)插入數(shù)據(jù)庫
- /// < /summary>
- /// < param name="InsertString">Insert Sql語句< /param>
- /// < param name="SqlConn">數(shù)據(jù)庫連接< /param>
- /// < returns>插入成功返回true< /returns>
- public bool Insert(string InsertString, SqlConnection SqlConn)
- {
- return udiDataBase(InsertString, SqlConn);
- }
- /// < summary>
- /// 根據(jù)Sql語句更新數(shù)據(jù)庫
- /// < /summary>
- /// < param name="UDIString">更新語句< /param>
- /// < param name="SqlConn">數(shù)據(jù)庫連接< /param>
- /// < returns>更新成功則返回true< /returns>
- public bool udiDataBase(string UDIString, SqlConnection SqlConn)
- {
- strError = "";
- SqlConnection conn;
- if (SqlConn == null)
- {
- conn = DBconn();
- }
- else
- {
- conn = SqlConn;
- }
- try
- {
- if (conn.State == ConnectionState.Closed)
- {
- conn.Open();
- }
- SqlCommand cmd = new SqlCommand(UDIString, conn);
- cmd.CommandType = CommandType.Text;
- intCount = cmd.ExecuteNonQuery();
- return !(intCount < 1);
- }
- catch (Exception e)
- {
- strError = "更新數(shù)據(jù)庫失敗:" + e.Message;
- return false;
- }
- finally
- {
- if (conn.State != ConnectionState.Closed)
- {
- conn.Close();
- }
- }
- }
- }
- }
-----------------------------
ASP.NET數(shù)據(jù)庫操作類寫好了,下面是兩種調(diào)用方法
1、
- string strUserPsw = UserPsw.Text.Trim();
- string UserPassWord = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strUserPsw, "MD5");//md5加密
- SqlServerDataBase obj = new SqlServerDataBase();
- obj.Insert("insert into asUserInfo (UserName,UserPassword,Question,Answer,CreateTime) values('" + UserName.Text.Trim() + "','" + UserPassword + "','" + Question.Text.Trim() + "','" + Answer.Text.Trim() + "','" + DateTime.Now.ToString() + "' )", null);
2、
- private bool IsUsernameExist(string strUsername)
- {
- bool bRet = true;
- SqlServerDataBase db = new SqlServerDataBase();
- DataSet ds = db.Select("select * from asUserInfo where UserName = '" + strUsername + "'", null);
- if (ds == null ds.Tables.Count == 0 ds.Tables[0].Rows.Count == 0)
- {
- bRet = false;
- }
- else
- {
- bRet = true;
- }
- return bRet;
- }
以上就介紹了用C#寫的ASP.NET數(shù)據(jù)庫類及調(diào)用方法。
【編輯推薦】
責(zé)任編輯:yangsai
來源:
BlogBus