资源简介
适用于初学者,自己做的一个简单的系统,下载即可使用
代码片段和文件信息
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#+SQL班级学生管理系统
- C#+SQL 医院管理系统HIS完整工程源码及
- C#+sql图书管理系统+源码
- 学生成绩管理系统(C#+SQL)
- 纯C#+SQL2008 学生成绩管理系统
- 人事小项目(c#+sql+mvc)
- asp.net+c#+sql server企业文档管理系统全
- C#+SQL企业文档管理系统全套
- c#+sql人事工资管理系统
- C#+SQL Server停车管理系统
- 图书馆管理系统ASP.net C#+sql数据库
- C#+SQL开发的图书管理系统
- VS2010C#+SQLserver下的学生选课系统
- 教材管理系统 C#+SQL 三层架构
- 企业考勤管理系统C#+SQL)源代码
- asp.net(C#+SqlServer)编写图书借阅系统
- c#+sql 酒店客房管理系统+系统开发要求
- C#+SQL电影票销售系统
- 管理系统c#+sql完整项目版
- (C#+SQL)旅游管理系统
- 仓库管理系统c#+SQLSERVER
- C#+SQLSERVER网上教学系统
- 仓库管理系统源程序(C#+sql)
- C#+SQL学生成绩管理系统
- C#+SQL2005图书管理系统
- 图书管理系统c#+sql server2005
- C#+SQL Server的简单银行管理系统
- c#+sqlserver电费收费管理系统
- Visual C#+SQL Server数据库开发与光盘
- 超市管理系统C#+SQL
评论
共有 条评论