程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> comBox綁定SQL Server數據庫中時間字段中的不重復的年份

comBox綁定SQL Server數據庫中時間字段中的不重復的年份

編輯:關於MYSQL數據庫

       關於comBox綁定SQL Server數據庫中時間字段中的不重復的年份如下:

      private void Education_Training_Load(object sender, EventArgs e)

      {

      MyDBase DB = new MyDBase(DBUser.sserver, DBUser.DBName, DBUser.suser, DBUser.spasswd);

      DataSet DS = DB.GetRecordset("select distinct (year(date)) as date from education_train ");

      if (DS.Tables[0].Rows.Count == 0) return;

      comboBox_Year.DataSource = DS.Tables[0];

      comboBox_Year.DisplayMember = "date";

      comboBox_Year.ValueMember = "date";

      comboBox_Year.SelectedIndex = comboBox_Year.Items.Count - 1;//選中最大年份

      if (DB.ErrorCode())

      {

      MessageBox.Show(DB.ErrMessage(), "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);

      return;

      }

      dataGridView1.DataSource = DS.Tables[0];

      DB.DBClose();

      }

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved