程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> sqlhelper-VISUAL2013找不到類怎麼辦,已經添加進去了還是找不到SQLHELP類

sqlhelper-VISUAL2013找不到類怎麼辦,已經添加進去了還是找不到SQLHELP類

編輯:編程綜合問答
VISUAL2013找不到類怎麼辦,已經添加進去了還是找不到SQLHELP類
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using DAL;
using System.Data.SqlClient;

namespace 圖書借閱管理系統
{
    public partial class 登陸 : Form
    {
        public 登陸()
        {
            InitializeComponent();
        }

        private void label4_Click(object sender, EventArgs e)
        {
        }

        private void 登陸_Load(object sender, EventArgs e)
        {
            Random r = new Random();
            label4.Text = r.Next(1000, 9999).ToString();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int role;
            if(textBox3.Text==label4.Text)
            {
                if (radioButton1.Checked) role = 0;
                else role = 1;
                SqlParameter[] p ={
                                      new SqlParameter("@UserName",textBox1.Text),
                                      new SqlParameter("@PassWord",textBox2.Text),
                                      new SqlParameter("@Role",role)
                                  };
                SqlDataReader dr=SQLHELPER.(到這就提示不存在sqlhelp)
            }
        }
    }
}

圖片說明
圖片說明

最佳回答:


注意sqlhelper裡的namespace是不是namespace 圖書借閱管理系統
如果不是,加上對應的using

caozhy
u012404135
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved