资源简介
适用于初学者,自己做的一个简单的系统,下载即可使用

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace Student_Result_System
{
///
/// 业务处理类
///
public class BLL
{
#region 判断是否登陆成功
public static bool Loginbll(string name string pwd)
{
string sql = string.Format(@“select count(*) from [admin] where name=‘{0}‘ and passwd=‘{1}‘“ name pwd);
try
{
return int.Parse(DBHelper.GetOnly(sql).ToString()) > 0;
}
catch (Exception)
{
return false;
}
}
#endregion
#region 学生信息查询
public static DataSet GetAllStu()
{
string sql = “select id as ‘编号‘Name as ‘姓名‘BJDM as ‘班级代码‘ from student“;
return DBHelper.GetSet(sql);
}
#endregion
#region 学生信息录入
public static bool Stu_inser(string no string name string _class)
{
string sql = string.Format(@“insert into student values(‘{0}‘‘{1}‘‘{2}‘)“ no name _class);
return DBHelper.ExecuteSql(sql);
}
#endregion
#region 学生信息删除
public static bool Stu_delete(string no)
{
string sql = string.Format(@“delete student where ID=‘{0}‘“no);
return DBHelper.ExecuteSql(sql);
}
#endregion
#region 成绩删除
public static void Result_delete(string no)
{
string sql = string.Format(@“delete cjbiao where ID=‘{0}‘“no);
DBHelper.ExecuteSql(sql);
}
#endregion
#region 成绩查询
public static DataSet GetResultSet(string where)
{
string sql = “select cjbiao.ID as ‘编号‘student.Name as ‘姓名‘kecheng.KCMC as ‘课程‘BJ.BJMC as ‘班级‘cjbiao.CJ from cjbiaokechengBJstudent where cjbiao.KCDM=kecheng.KCDM and cjbiao.BJDM=BJ.BJDM and student.ID=cjbiao.ID“ + where;
return DBHelper.GetSet(sql);
}
#endregion
#region 班级查询
public static DataSet GetClassSet()
{
string sql = “select * from BJ“;
return DBHelper.GetSet(sql);
}
#endregion
#region 课程查询
public static DataSet GetCourseSet()
{
string sql = “select * from kecheng“;
return DBHelper.GetSet(sql);
}
#endregion
#region 成绩录入
public static bool Result_insert(string no string kcdm string bjdm string cj)
{
string sql = string.Format(@“insert into cjbiao values(‘{0}‘‘{1}‘‘{2}‘‘{3}‘)“ no kcdm bjdm cj);
return DBHelper.ExecuteSql(sql);
}
#endregion
#region 成绩修改
public static bool Result_update(string no string course int result)
{
string sql = string.Format(@“updat
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3496448 2014-06-01 14:35 Student_Result_System(3)\Student_Result_System\Student_Result_System\bin\Debug\Student_Result_System.exe
文件 122368 2014-06-01 14:35 Student_Result_System(3)\Student_Result_System\Student_Result_System\bin\Debug\Student_Result_System.pdb
文件 11600 2014-06-01 14:35 Student_Result_System(3)\Student_Result_System\Student_Result_System\bin\Debug\Student_Result_System.vshost.exe
文件 490 2010-03-17 22:39 Student_Result_System(3)\Student_Result_System\Student_Result_System\bin\Debug\Student_Result_System.vshost.exe.manifest
文件 3304 2013-11-16 13:34 Student_Result_System(3)\Student_Result_System\Student_Result_System\BLL.cs
文件 1420 2013-11-16 13:20 Student_Result_System(3)\Student_Result_System\Student_Result_System\DB\StudentCj.sql
文件 1880 2013-11-14 17:54 Student_Result_System(3)\Student_Result_System\Student_Result_System\DBHelper.cs
文件 2845 2013-11-14 21:55 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_Login.cs
文件 4731 2013-11-14 21:52 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_Login.Designer.cs
文件 720967 2013-11-14 21:52 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_Login.resx
文件 2861 2013-11-16 01:10 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_Main.cs
文件 10267 2013-11-14 23:40 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_Main.Designer.cs
文件 721165 2013-11-14 23:40 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_Main.resx
文件 3616 2013-11-15 00:00 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Insert.cs
文件 8755 2013-11-14 23:43 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Insert.Designer.cs
文件 720967 2013-11-14 23:43 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Insert.resx
文件 2092 2013-11-14 22:40 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Select.cs
文件 8625 2013-11-14 21:51 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Select.Designer.cs
文件 720967 2013-11-14 21:51 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Select.resx
文件 3571 2013-11-16 13:01 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Update.cs
文件 7134 2013-11-16 00:37 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Update.Designer.cs
文件 720967 2013-11-16 00:37 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_result_Update.resx
文件 1702 2013-11-16 13:54 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Delete.cs
文件 4660 2013-11-16 13:11 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Delete.Designer.cs
文件 720967 2013-11-16 13:11 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Delete.resx
文件 2011 2013-11-16 13:50 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Insert.cs
文件 6205 2013-11-16 13:49 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Insert.Designer.cs
文件 720967 2013-11-16 13:49 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Insert.resx
文件 953 2013-11-13 20:22 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Select.cs
文件 3847 2013-11-13 20:22 Student_Result_System(3)\Student_Result_System\Student_Result_System\Frm_stu_Select.Designer.cs
............此处省略45个文件信息
相关资源
- C#+SQLServer文档管理系统
- 图书管理系统C#+SQL 适合毕业设计含毕
- C#+sql 2000 人力资源管理系统
- C#+SQL超市进销存管理系统
- C#+SQL+三层架构酒店管理系统
- 考勤系统 C#+SqlServer
- c#+sql 学生信息管理系统
- 网上订餐系统在C#中的设计与实现+餐
- 网上订餐系统在C#的设计与实现+餐饮
- 学生宿舍管理系统C#+sql
- 社团会员管理系统数据库课程设计报
- C#+SQL Server电子相册源代码
- c#+sql2005酒店管理信息系统
- 学生信息管理 C# SQL
- 一个小型新闻系统源码(c#+SQL2005)含
- 企业人事管理系统C#+sql server 2008
- 数据库课设-图书租赁管理系统C#+SQL完
- 人事工资管理系统C#+SQL Server 2008
- Visual C#+SQL Server数据库开发与源代码
- 个人理财系统c#+sql
- ASP.NET+C#+SQL校园新闻发布系统
- ASP.NET+C#+SQL Server 毕业论文+开题报告
- 个人通讯录管理系统C#+Sql Sever
- 基于VS2010+C#+SQL Server 2008 开发的网上银
- 基于VS2010+C#+SQL Server 2008 开发的个人财
- 图书管理系统(c#+sql2008)
- C#+SQL数据库实现学生管理系统
- 仓库管理系统C#+SQL2005
- 基于C#+SQL Server的学生管理系统
- 工资管理系统C#+SQL
评论
共有 条评论