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

Kết nối với SQL Server trong ASP.NET

tôi nghĩ rằng bạn cũng phải tạo đối tượng của lớp SqlCommand và chuyển chuỗi lệnh đến phương thức khởi tạo của nó. thử cái này "

SqlConnection conn = new SqlConnection("Data Source=serverName;"
           + "Initial Catalog=databaseName;"
           + "Persist Security Info=True;"
           + "User ID=userName;Password=password");

conn.Open();

// create a SqlCommand object for this connection
SqlCommand command = conn.CreateCommand();
command.CommandText = "Select * from tableName";
command.CommandType = CommandType.Text;

// execute the command that returns a SqlDataReader
SqlDataReader reader = command.ExecuteReader();

// display the results
while (reader.Read()) {
    //whatever you want to do.
}

// close the connection
reader.Close();
conn.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. Tại sao chúng ta không thể sử dụng các phép nối bên ngoài trong CTE đệ quy?

  2. Một cái nhìn logic không tưởng tượng về các quy ước đặt tên máy chủ SQL

  3. SQL Server:Mẹo hữu ích cho người mới

  4. Thực thi thủ tục được lưu trữ từ cmd.exe?

  5. Kiểu dữ liệu SQL tốt nhất để lưu trữ chuỗi JSON là gì?