Code Monkey home page Code Monkey logo

haceaustudentinfomanagementsystem's Introduction

Haceau-学生信息管理系统

Language .Net Framework MySQL Gitee Github

简介

该项目为个人练习制作的学生信息管理系统,使用.Net Framework4.7.2平台上的C#语言编写,数据存储于MySQL。当前版本为1.3.0。使用了用于存储数据的MySql.Data及其依赖的NuGet包和用于操作Excel表的Panda.SimpleExcel及其依赖的NuGet包。开源协议为GPL。保持更新中。

食用方法

前提

  • 安装MySQL

clone项目到本地

在控制台输入:

	git clone https://github.com/Haceau-Zoac/HaceauStudentInfoManagementSystem

编辑config.txt

编辑文件内容为:

	server=<IP>;port=<端口>;database=<数据库名>;user=<用户名>;password=<密码>;SslMode=none;

例:

	server=localhost;port=3306;database=test;user=root;password=pwd;SslMode=none;
  • 注:数据库中须有名为“student”的数据表。命令如下。

      CREATE TABLE student(
      	id INT UNSIGNED AUTO_INCREMENT,
      	name VARCHAR(50) NOT NULL,
      	age INT UNSIGNED NOT NULL,
      	PRIMARY KEY (id));
    

待办清单

完成版本 内容
1.1.0 导出数据
1.2.0 导入数据
1.3.0 导出\导入Execl
2.0.0 重构代码
~ 长期维护

haceaustudentinfomanagementsystem's People

Contributors

haceau-zoac avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.