使用系統;
使用系統數據;
使用系統配置;
使用系統.Web;
使用 System.Web.Security;
使用 System.Web.UI;
使用 System.Web.UI.WebControls;
使用 System.Web.UI.WebControls.WebParts;
使用 System.Web.UI.HtmlControls;
使用 System.Data.SqlClient;
命名空間 Mysqlserver
{
/// <摘要>
/// SqlServerDataBase 的摘要說明
/// </摘要>
公共類別 SqlServerDataBase
{
私有字串 strError = null;
私有 int intCount = 0;
公共 SqlServerDataBase()
{
//
// TODO: 在此處新增建構函式邏輯
//
}
/// <摘要>
/// 公開方法DBConn,回傳資料庫連接
/// </摘要>
/// <返回></返回>
公 SqlConnection DBconn()
{
string strConn =“伺服器=(本地);資料庫=GlobalMeetings;Uid=sa;pwd=”;
嘗試
{
返回新的 SqlConnection(strConn);
}
捕獲(異常)
{
返回空值;
}
}
/// <摘要>
/// 公開屬性ErrorMessage,回傳錯誤訊息
/// </摘要>
公共字串錯誤訊息
{
得到
{
返回字串錯誤;
}
}
/// <摘要>
/// 根據查詢語句從資料庫資料檢索
/// </摘要>
/// <param name="strSelect">查詢語句</param>
/// <param name="SqlConn">資料庫連線</param>
/// <returns>有資料則返回DataSet對象,否則返回null</returns>
公用資料集選擇(字串SelectString,SqlConnection sqlConn)
{
字串錯誤=“”;
SqlConnection conn;
如果(sqlConn == null)
{
conn = DBconn();
}
別的
{
conn = sqlConn;
}
嘗試
{
//若資料庫連線的目前狀態是關閉的,則開啟連接
if (conn.State == ConnectionState.Closed)
{
conn.Open();
}
SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter();
SqlCommand selectCommand = new SqlCommand(SelectString, conn);
selectCommand.CommandType = CommandType.Text;
mySqlDataAdapter.SelectCommand = selectCommand;
資料集 myDS = new DataSet();
mySqlDataAdapter.Fill(myDS);
返回 myDS;
}
捕獲(異常 e)
{
strError = "搜尋資料失敗:" + e.Message;
返回空值;
}
最後
{
if (conn.State != ConnectionState.Closed)
{
conn.Close();
}
}
}
/// <摘要>
/// 更新資料庫
/// </摘要>
/// <param name="UpdateString">更新Sql語句</param>
/// <param name="SqlConn">資料庫連線</param>
/// <returns>更新成功回傳true</returns>
公共布林更新(字串UpdateString,SqlConnection SqlConn)
{
返回 udiDataBase(UpdateString, SqlConn);
}
/// <摘要>
/// 從資料庫中刪除數據
/// </摘要>
/// <param name="DeleteString">刪除Sql語句</param>
/// <param name="SqlConn">資料庫連線</param>
/// <returns>刪除成功回傳true</returns>
公共布爾刪除(字串DeleteString,SqlConnection SqlConn)
{
返回 udiDataBase(DeleteString, SqlConn);
}
/// <摘要>
/// 把資料插入資料庫
/// </摘要>
/// <param name="InsertString">插入Sql語句</param>
/// <param name="SqlConn">資料庫連線</param>
/// <returns>插入成功回傳true</returns>
公共布林插入(字串InsertString,SqlConnection SqlConn)
{
返回 udiDataBase(InsertString, SqlConn);
}
/// <摘要>
/// 根據Sql語句更新資料庫
/// </摘要>
/// <param name="UDIString">更新語句</param>
/// <param name="SqlConn">資料庫連線</param>
/// <returns>更新成功則回傳true</returns>
公用 bool udiDataBase(字串 UDIString,SqlConnection SqlConn)
{
字串錯誤=“”;
SqlConnection conn;
如果(SqlConn == null)
{
conn = DBconn();
}
別的
{
conn = SqlConn;
}
嘗試
{
if (conn.State == ConnectionState.Closed)
{
conn.Open();
}
SqlCommand cmd = new SqlCommand(UDIString, conn);
cmd.CommandType = CommandType.Text;
intCount = cmd.ExecuteNonQuery();
返回!
}
捕獲(異常 e)
{
strError = "更新資料庫失敗:" + e.Message;
返回假;
}
最後
{
if (conn.State != ConnectionState.Closed)
{
conn.Close();
}
}
}
}
}
----------------------------
兩種調用方法
1、 string strUserPsw = UserPsw.Text.Trim();
string UserPassword = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strUserPsw, "MD5");//md5加密
SqlServerDataBase obj = new SqlServerDataBase();
obj.Insert("插入asUserInfo (使用者名,使用者密碼,問題,答案,CreateTime)values('" + UserName.Text.Trim() + "','" + UserPassword + "','" + Question.Text . Trim() + "','" + Answer.Text.Trim() + "','" + DateTime.Now.ToString() + "' )", null);
2、 private bool IsUsernameExist(string strUsername)
{
布爾 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=假;
}
別的
{
bRet=真;
返回
bRet;
http://blog.csdn.net/zdyguilong/archive/2007/01/22/1490250.aspx