C#源代码 学生成绩管理系统

时间:2014-08-18 23:11:01
【文件属性】:

文件名称:C#源代码 学生成绩管理系统

文件大小:184KB

文件格式:RAR

更新时间:2014-08-18 23:11:01

C# 管理系统

C#源代码 学生成绩管理系统 #region 执行SQL语句,返回SqlDataReader ///

/// 执行SQL语句,返回SqlDataReader /// /// 要执行的SQL语句 /// 返回SqlDataReader,需手工关闭连接 public SqlDataReader GetReader(string sql) { SqlConnection con=new SqlConnection(DataAccess.ConnectionString); SqlCommand cmd=new SqlCommand(sql,con); SqlDataReader dr=null; try { con.Open(); dr=cmd.ExecuteReader(CommandBehavior.CloseConnection); } catch (Exception ex) { dr.Close(); con.Dispose(); cmd.Dispose(); throw new Exception(ex.ToString()); } return dr; } #endregion


【文件预览】:
学生成绩管理系统
----CJGL.sln(893B)
----bin()
--------Debug()
----WinNewUser.resx(30KB)
----Images()
--------button4.bmp(2KB)
--------button2.bmp(2KB)
--------Login.png(52KB)
--------button1.bmp(2KB)
--------button3.bmp(2KB)
--------Login.gif(6KB)
--------button5.bmp(26KB)
----CJGL.csproj.user(2KB)
----WinMain.resx(20KB)
----data()
--------bak(1.91MB)
----obj()
--------Debug()
----Login.resx(22KB)
----DataAccess.cs(8KB)
----WinMain.cs(11KB)
----WinNewUser.cs(13KB)
----Ico()
--------SearchButton.ico(1KB)
--------mail.ico(1KB)
--------Login.ico(1KB)
--------picture.ico(1KB)
--------IMSmallToolbarAction.ico(1KB)
--------face.ico(1KB)
--------MenuButton.ico(894B)
--------MSN.ICO(4KB)
--------catch.ico(894B)
--------quick.ico(1KB)
--------SysMsgButton.ico(894B)
--------scene.ico(1KB)
--------REFBARH.ICO(6KB)
--------FOLDER.ICO(5KB)
--------IMSmallToolbarCatch.ico(894B)
--------action.ico(1KB)
--------loginGroup.ico(894B)
----CJGL.suo(10KB)
----App.config(270B)
----CJGL.csproj(5KB)
----Login.cs(8KB)

网友评论