.net画图
//获取数据
public void Get_CurveData()
{
SqlConnection conn = null;
try
{
conn = CommonFunction.CreateDBTest();
conn.Open();
SqlCommand cmd = conn.CreateCommand();
string sqlStr = "SELECT * FROM CURVE ORDER BY TESTDATE";
DataTable dt = CommonFunction.ExecuteDatable(conn, cmd, CommandType.Text, sqlStr, null);
draw(dt);
}
catch (Exception exp)
{
Response.Write(exp.Message);
}
finally
{
if (conn != null)
conn.Close();
}
}
conn = CommonFunction.CreateDBTest();是个什么样的存在,谢谢帮忙解决
------解决方案--------------------conn = CommonFunction.CreateDBTest();
这是你们自己实现的代码,不是.net自带的,看上下文,应该是创建一个Connection
------解决方案--------------------要先一步步来做:
搞好数据库读数,测试OK。
再看如何画出来?
------解决方案--------------------conn = CommonFunction.CreateDBTest();这个应该是项目中连接测试数据库的代码
------解决方案--------------------conn = CommonFunction.CreateDBTest();//获取连接字符串
鼠标放到CreateDBTest()函数上右键=》转到定义