I want to make a University Management system in which i can add student name ,rollno, edit delete display the data of students. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I want to make a University Management system in which i can add student name ,rollno, edit delete display the data of students.

17th Jan 2018, 11:05 PM
Aqib Ahmad
Aqib Ahmad - avatar
3 Answers
+ 19
use SQL(MySQL) for that create a database use database create a table with fields,datatypes&constraints //P.K. on rollno for adding , use INSERT for editing , use UPDATE for deleting , use DELETE FROM
18th Jan 2018, 9:46 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 2
So you would be happy with my Cobol code for this? Please read the following and update your post to provide enough information to make it possible to help. It should be noted most people here will fix your code. But, we don't write it for you. https://www.sololearn.com/Discuss/333866
18th Jan 2018, 1:40 AM
John Wells
John Wells - avatar
+ 1
I don't know which language you are working on. But when I look your tag, your tag is union. I guess you want to do it in C language. If you will use C you should use structs to do it. Using union is also a choice. But if you will use union you should use it in struct to control the memory management. If you will use other languages you can use sql. If you choose C# , you can use entity framework to make your things easy. Also you can work with diagrams(in sql) to see your database clearly.
18th Jan 2018, 10:14 AM
Yusuf
Yusuf - avatar