GetUID.cs
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. /********************************************************************************
  2. ** 作者:ebDoing
  3. ** 创始时间: 2008-10-22
  4. ** 描述:
  5. **    主要用于取得登录用户的编号,…
  6. *********************************************************************************/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using System.Configuration;
  11. using System.Data.SqlClient;
  12. namespace User
  13. {
  14.     public class GetUID
  15.     {
  16.         int uid;
  17.         SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["CartConnectionString"].ConnectionString);
  18.         /// <summary>
  19.         /// 
  20.         /// </summary>
  21.         /// <param name="name"></param>
  22.         /// <returns></returns>
  23.         public int GetUIDs(String name) {
  24.             String T_name = name;
  25.             String sql = "select UID from U_Info where UserName='" + T_name + "'";
  26.             SqlCommand cmd = new SqlCommand(sql, conn);
  27.             try
  28.             {
  29.                 conn.Open();
  30.                 SqlDataReader MyReader = cmd.ExecuteReader();
  31.                 if (MyReader.Read()) 
  32.                 {
  33.                     uid = MyReader.GetInt32(0);
  34.                 }
  35.             }
  36.             catch (Exception ex)
  37.             {
  38.                 throw (ex);
  39.             }
  40.             finally {
  41.                 conn.Close();
  42.             }
  43.             return uid;
  44.         }
  45.     }
  46. }