Get started with Docker

A. Official 1. Docker: https://www.docker.com/ 2. Docker Hub: https://hub.docker.com/explore/ B. Get Started I. Install: 1. Mac: https://docs.docker.com/mac/ 2. Linux: https://docs.docker.com/linux/ Ubuntu: https://docs.docker.com/engine/installation/linux/ubuntulinux/ 3. Windows: https://docs.docker.com/windows/ 4. Compose: https://docs.docker.com/compose/install/ C. Vietnam I. Cơ bản 1. Tôi Read more…

Chèn dữ liệu vào CSDL sử dụng Parameters

  using System; using System.Data; using System.Data.SqlClient; class UsingParameters { public static void Main() { SqlConnection mySqlConnection =new SqlConnection(“server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI;”); mySqlConnection.Open(); SqlCommand mySqlCommand = mySqlConnection.CreateCommand(); mySqlCommand.CommandText = “INSERT INTO Employee (” + ” ID, FirstName, Read more…