彩票走势图

读取SQL Server数据并通过Teechart图表控件显示数据曲线

原创|其它|编辑:郝浩|2012-10-15 16:04:45.000|阅读 814 次

概述:主要以代码说明,读取SQL server数据之后,并通过控件teechart显示出数据曲线

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

 在读取了SQL Server数据之后,并通过控件Teechart显示出数据曲线,在这里贴出这种方式的源码,大家一起探讨一下:

源码如下:

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Diagnostics;

namespace tchart_SQL
{
    public partial class Form1 : Form
    {
        private string connString = @"server = localhost;integrated security = true; database = student";
        string s = "select studentID,[英语],[数学],[语文],[总分] from score order by studentID Desc";//[英语],[数学],[语文],[总分]
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Stopwatch sw = new Stopwatch();//测试性能
            sw.Start();
            tChart1.Aspect.View3D = false;
            SqlConnection conn = new SqlConnection(connString);
            conn.Open();
            SqlCommand cmd2 = new SqlCommand(s, conn);
            SqlDataReader aReader = cmd2.ExecuteReader();
            line1.Title = "英语";
            line2.Title = "数学";
            line3.Title = "语文";
            line4.Title = "总分";

            while (aReader.Read())
            {
                line1.Add(Convert.ToInt32(aReader[1]),aReader[0].ToString(),Color.Red);
                line2.Add(Convert.ToInt32(aReader[2]),aReader[0].ToString(),Color.Black);
                line3.Add(Convert.ToInt32(aReader[3]),aReader[0].ToString(),Color.Blue);
                line4.Add(Convert.ToInt32(aReader[4]),aReader[0].ToString(),Color.DarkRed);
            }
            aReader.Close();
            conn.Close();
            sw.Stop();
            MessageBox.Show(sw.ElapsedMilliseconds.ToString());
        }
    }
}<DIV> <IMG alt="" src="//hi.csdn.net/attachment/201108/4/0_1312421740B1HB.gif"></DIV>

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:CSDN

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP