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

Email客户端

开发平台:

Visual C++

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