资源简介
学校老师要求的数据库系统的三级项目,一个OJ系统的数据库实现部分,其中有个txt文档是创建数据库,创建之后修改C#中的数据库链接代码即可实现。需要安装sqlserver。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace DB1
{
public partial class chuangjianshanchuxiaozu : UserControl
{
public chuangjianshanchuxiaozu()
{
InitializeComponent();
}
private void button2_Click(object sender EventArgs e)
{
string GR=textBox1.Text;
string GRname = textBox2.Text;
string now=DateTime.Now.ToString();
string user=Form1.nowUser;
string sql = “Insert into OJ_GROUP values(‘“+GR+“‘‘“+GRname+“‘‘“+now+“‘‘“+user+“‘)“;
SqlCommand cmd = con.CreateCommand();
cmd.CommandText = sql;
try
{
if (cmd.ExecuteNonQuery() == 1)
{
MessageBox.Show(“添加小组成功!“);
}
else
MessageBox.Show(“添加失败!请重新添加“);
}
catch
{
MessageBox.Show(“添加失败!请重新添加“);
}
}
SqlConnection con;
private void chuangjianshanchuxiaozu_Load(object sender EventArgs e)
{
con = conn.GetInstance();
}
private void button1_Click(object sender EventArgs e)
{
string GR = textBox1.Text;
string GRname = textBox2.Text;
string now = DateTime.Now.ToString();
string user = Form1.nowUser;
string sql = “DELETE FROM OJ_ADMIN_GRO_QUE WHERE GR#=‘“ + GR + “‘;DELETE FROM OJ_JOIN_GRO WHERE GR#=‘“ + GR + “‘;DELETE FROM OJ_STU_QUE_GRADE WHERE GR#=‘“ + GR + “‘;DELETE FROM OJ_GROUP WHERE GR#=‘“ + GR + “‘;“;
SqlCommand cmd = con.CreateCommand();
cmd.CommandText = sql;
try
{
if (cmd.ExecuteNonQuery() == 1)
{
MessageBox.Show(“删除成功!“);
}
else
{
MessageBox.Show(“无效删除!请检查小组编号“);
}
}
catch
{
MessageBox.Show(“删除失败!请重新操作“);
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-12-12 10:31 DB1\
目录 0 2017-12-14 14:24 DB1\DB1\
文件 187 2017-12-12 10:31 DB1\DB1\App.config
文件 6865 2017-12-13 20:11 DB1\DB1\DB1.csproj
文件 17789 2017-12-13 16:12 DB1\DB1\Form1.Designer.cs
文件 7114 2017-12-13 19:45 DB1\DB1\Form1.cs
文件 5817 2017-12-13 16:12 DB1\DB1\Form1.resx
文件 515 2017-12-12 10:31 DB1\DB1\Program.cs
目录 0 2017-12-12 10:31 DB1\DB1\Properties\
文件 1330 2017-12-12 10:31 DB1\DB1\Properties\AssemblyInfo.cs
文件 2858 2017-12-12 10:31 DB1\DB1\Properties\Resources.Designer.cs
文件 5612 2017-12-12 10:31 DB1\DB1\Properties\Resources.resx
文件 1090 2017-12-12 10:31 DB1\DB1\Properties\Settings.Designer.cs
文件 249 2017-12-12 10:31 DB1\DB1\Properties\Settings.settings
目录 0 2017-12-12 20:00 DB1\DB1\bin\
目录 0 2017-12-13 21:08 DB1\DB1\bin\Debug\
文件 43520 2017-12-14 14:55 DB1\DB1\bin\Debug\DB1.exe
文件 187 2017-12-12 10:31 DB1\DB1\bin\Debug\DB1.exe.config
文件 101888 2017-12-14 14:55 DB1\DB1\bin\Debug\DB1.pdb
文件 24224 2017-12-14 18:19 DB1\DB1\bin\Debug\DB1.vshost.exe
文件 187 2017-12-12 10:31 DB1\DB1\bin\Debug\DB1.vshost.exe.config
文件 490 2017-03-19 05:00 DB1\DB1\bin\Debug\DB1.vshost.exe.manifest
目录 0 2017-12-16 15:28 DB1\DB1\bin\Release\
文件 5031 2017-12-13 09:43 DB1\DB1\chuangjianshanchuxiaozu.Designer.cs
文件 2503 2017-12-13 09:50 DB1\DB1\chuangjianshanchuxiaozu.cs
文件 5817 2017-12-13 09:43 DB1\DB1\chuangjianshanchuxiaozu.resx
文件 8980 2017-12-12 23:26 DB1\DB1\chuti.Designer.cs
文件 2683 2017-12-13 09:50 DB1\DB1\chuti.cs
文件 5817 2017-12-12 23:26 DB1\DB1\chuti.resx
文件 1203 2017-12-14 14:11 DB1\DB1\conn.cs
文件 6897 2017-12-13 20:20 DB1\DB1\dati.Designer.cs
............此处省略47个文件信息
- 上一篇:C# 串口调试助手源代码
- 下一篇:C#经典编程220-含随书视频及源代码
评论
共有 条评论