티스토리 뷰
namespace Fetch
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//MySqlConnection conn = new MySqlConnection("");
private MySqlConnection myConn = new MySqlConnection("datasource=localhost;port=3306;username=root;password=1234");
private void button1_Click(object sender, EventArgs e)
{
MySqlDataAdapter mdf = new MySqlDataAdapter("select * from wdata_mdb.connect_history where date between '"+dateTimePicker1.Value.ToString()+"' and '"+dateTimePicker2.Value.ToString()+"' ", myConn);
DataTable sd = new DataTable();
mdf.Fill(sd);
dataGridView1.DataSource = sd;
}
}
}
'프로그래밍 > C#' 카테고리의 다른 글
c# mysql Packets larger than max_allowed_packet are not allowed 오류해결 (0) | 2019.01.23 |
---|---|
mysql 콤보박스로 오픈하지 않고 나오게 하기 (0) | 2019.01.23 |
Control에서 자동으로 TabPage 선택하는 방법 (0) | 2019.01.23 |
c# 콤보박스를 마우스 클릭하면 바로 mysql 에 있는 값 불러오기 (0) | 2019.01.23 |
c# 윈도우 로그인 계정 얻기 (0) | 2019.01.22 |
댓글