Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Cách tải dữ liệu vào hộp văn bản từ bảng cơ sở dữ liệu sql

Ôi cái gì. Dừng lại !!! Sử dụng truy vấn được tham số hóa để tránh SQL Injection

Đề cập đến bạn chuỗi conncection trong kết nối connection

Tôi hy vọng vấn đề là bạn có missesd txtEmployId.Text giá trị và txtEmplyName.Text giá trị trong truy vấn đã chọn của bạn

SqlConnection  connection= new SqlConnection(your Connection string);
string query = "SELECT CNIC, City, MobileNo, Address, Salary, DailyWage, Status   
       FROM  Employees WHERE EmployId [email protected] AND Emplname = @Emplname ";
SqlCommand  command1 = new SqlCommand(query, connection); 
connection.Open();
command1.Parameters.AddWithValue("@EmpID",txtEmployId.Text);
command1.Parameters.AddWithValue("@Emplname",txtEmplyName.Text);
SqlDataReader reader1 = command1.ExecuteReader();


    while(reader1.Read())
   {
    this.txtCNIC.Text = (reader1["CNIC"].ToString());
    this.txtEmplyCity.Text = (reader1["City"].ToString());
    this.txtEmplyAddress.Text = (reader1["Address"].ToString());
    this.txtSalary.Text = (reader1["Salary"].ToString());
    this.txtDailyWage.Text = (reader1["DailyWage"].ToString());

        reader1.Close();
    }


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Ứng dụng Spring mất kết nối với MySql sau 8 giờ. Làm thế nào để cấu hình đúng?

  2. Docker Soạn kết nối ECONNREFUSED 172.18.0.4:3306

  3. AngularJS &Laravel 4.2 truy xuất dữ liệu từ nhiều bảng và nối chúng

  4. HIỂN THỊ BẢNG BIỂU trong MySQL

  5. Lỗi cú pháp SQL - không thể tìm thấy lỗi