您的位置:首页 > 编程语言 > C#

C#异步绑定数据实现方法

2015-09-04 16:54 1846 查看

本文实例讲述了C#异步绑定数据实现方法。分享给大家供大家参考。具体如下:

using System;
using System.Collections.Generic;
using System.Text;
using System.Data.SqlClient;
using System.Data;
using System.Windows.Forms;
namespace WindowsApplication2
{
public class AsyncCallBackOpeartion
{
private static DataGridView dataGridView;
public static void AsyncCallBack(string connectionString, string sql, DataGridView dgv)
{
dataGridView = dgv;
connectionString += ";Asynchronous Processing=true";
SqlConnection conn = new SqlConnection(connectionString);
SqlCommand command = new SqlCommand(sql, conn);
conn.Open();
command.BeginExecuteReader(new AsyncCallback(AsyncCallBack), command);
}
static void AsyncCallBack(IAsyncResult ar)
{
if (ar.IsCompleted)
{
SqlCommand com = (SqlCommand)ar.AsyncState;
SqlDataReader dr = com.EndExecuteReader(ar);
DataTable dt = new DataTable();
dt.Load(dr);
dr.Close();
if (dataGridView.InvokeRequired)
{
updateDG ur = new updateDG(dataBin);
dataGridView.Invoke(ur, dt);
}
}
}
delegate void updateDG(DataTable dt);
public static void dataBin(DataTable dt)
{
dataGridView.DataSource = dt;
}
}
}

希望本文所述对大家的C#程序设计有所帮助。

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  C# 异步 绑定