Bài giảng Lập trình trên Windows với Microsoft® .NET: Bài 10 - Hồ Hoàn Kiếm

11 2 0
Bài giảng Lập trình trên Windows với Microsoft® .NET: Bài 10 - Hồ Hoàn Kiếm

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Lập trình Windows với Microsoft® NET Giảng viên : Hồ Hoàn Kiếm SqlDataAdapter  Bộ lọc liệu  Phân trang 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 liệu trả từ DataAdapter  “Cơ sở liệu thu nhỏ”  Gồm đối tượng : - DataTable - DataRelation DataSet  Mơ hình DataSet DataTable  Chứa liệu trả DataSet DataAdapter  Gồm đối tượng : - DataColumn - DataRow Create a DataTable  myTable.Columns.Add("ItemID",Type.GetType("System.Int32"));  myTable.Columns.Add("ItemName",Type.GetType("System.Strin g"));  myTable.Columns.Add("Quantity",Type.GetType("System.Int32")) ;  myTable.Columns.Add("Quantity",Type.GetType("System.float"));  // thêm column 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 < 10; i++)  {  myRow = myTable.NewRow();  myRow["ItemID"] = i + 1;  myRow["Price"] = i*2+1;  myRow["ItemName"] = (60+i);  myRow["Quantity"] = i + 1;  myTable.Rows.Add(myRow);  } DataView  Dùng để quản lý thao tác liệu DataTable…  Dùng để lọc , xếp liệu DataTable DataView DataBinding  Hiển thị liệu DataTable…vào control ( TextBox, ComboBox, DataGrid…)  Gồm loại : - Binding Sample - Binding Complex

Ngày đăng: 24/10/2023, 19:04

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan