Đang chuẩn bị liên kết để tải về tài liệu:
Bài giảng: Lập trình trên Windows với Microsoft® .NET
Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Tham khảo tài liệu 'bài giảng: lập trình trên windows với microsoft® .net', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Lập trình trên Windows với Microsoft® .NET SqlDataAdapter Bộ lọc dữ liệu. Phân trang dữ liệu. Phương thức fill(datasource); fill(datasource,start,number,”tablename”) SqlCommand Thực thi câu lệnh SQL. Phương thức : ExecuteNonQuery() ExecuteScala() ExecuteReader() DataSet Chứa dữ liệu trả về từ DataAdapter. “Cơ sở dữ liệu thu nhỏ”. Gồm các đối tượng : - DataTable - DataRelation DataSet Mô hình DataSet DataTable Chứa dữ liệu trả về DataSet hoặc DataAdapter. Gồm các đối tượng : - DataColumn - DataRow Create a DataTable myTable.Columns.Add("ItemID",Type.GetType("System.Int32")); myTable.Columns.Add("ItemName",Type.GetType("System.String")); myTable.Columns.Add("Quantity",Type.GetType("System.Int32")); myTable.Columns.Add("Quantity",Type.GetType("System.float")); // thêm column mới vào table myTable.Columns.Add(myColumn); myTable.Columns.Add("SubTotal",Type.GetType("System.Int32"),"Quantity*Price"); myTable.PrimaryKey = new DataColumn[]{myTable.Columns[0]}; Insert data into DataTable // Thêm 10 dòng vào Table DataRow myRow; for(int i = 0; i DataView Dùng để quản lý và thao tác dữ liệu trong DataTable Dùng để lọc , sắp xếp dữ liệu trong DataTable DataView DataBinding Hiển thị dữ liệu trong DataTable vào các control ( TextBox, ComboBox, DataGrid ) Gồm 2 loại chính : - Binding Sample - Binding Complex | Lập trình trên Windows với Microsoft® .NET SqlDataAdapter Bộ lọc dữ liệu. Phân trang dữ liệu. Phương thức fill(datasource); fill(datasource,start,number,”tablename”) SqlCommand Thực thi câu lệnh SQL. Phương thức : ExecuteNonQuery() ExecuteScala() ExecuteReader() DataSet Chứa dữ liệu trả về từ DataAdapter. “Cơ sở dữ liệu thu nhỏ”. Gồm các đối tượng : - DataTable - DataRelation DataSet Mô hình DataSet DataTable Chứa dữ liệu trả về DataSet hoặc DataAdapter. Gồm các đối tượng : - DataColumn - DataRow Create a DataTable myTable.Columns.Add("ItemID",Type.GetType("System.Int32")); myTable.Columns.Add("ItemName",Type.GetType("System.String")); myTable.Columns.Add("Quantity",Type.GetType("System.Int32")); myTable.Columns.Add("Quantity",Type.GetType("System.float")); // thêm column mới vào table myTable.Columns.Add(myColumn); myTable.Columns.Add("SubTotal",Type.GetType("System.Int32"),"Quantity*Price"); myTable.PrimaryKey = new DataColumn[]{myTable.Columns[0]}; .