zoukankan      html  css  js  c++  java
  • c# 读取数据库得到字符串

     public string GetProductType(string connectionString, string barCode)
            {
                string productType;
                SqlConnection conn = new SqlConnection(connectionString);
                conn.Open();
                //MessageBox.Show("连接成功");
                string sqlCmd = "select 产品型号 from ProName where 壳体编号 = '"+ barCode + "'";

                SqlCommand command = new SqlCommand(sqlCmd, conn);
                SqlDataReader read = command.ExecuteReader();
                if (read.Read())
                {
                    productType = read["产品型号"].ToString();
                    conn.Close();
                    return productType;
                }

    }

  • 相关阅读:
    KMP算法
    Java中的字段和属性
    Java的垃圾回收机制
    一个初学所了解的jquery事件
    jQuery选择器
    hide(1000)跟show(1000)
    show/hide
    点击消失功能
    Java中集合Set的用法
    oracle的nvl和sql server的isnull
  • 原文地址:https://www.cnblogs.com/hanjiaxu/p/3200436.html
Copyright © 2011-2022 走看看