Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

regarding school project

Status
Not open for further replies.

rushtosri

Programmer
Feb 25, 2001
80
0
0
US
Hello Everyone,

I'm learning C programming from past few months. Now I'm quite confident of doing a project. Recently myself and my friend decided to do a database management system for a school which can store details of students as well as the teachers. But i don't know how to start. Can anyone tell me how to startoff?? Plz also tell me if i can get any resources on the net for the same.

Thankx in advance.
Awaiting for ur replies...
Shri.
 
If you want to make a DMS, you need to know data structure.
B-tree is frequently used for DB systems. Sometimes
AVL tree is used with mmap like mSQL.

I think the step will be :

1. Fully understand C language.
2. Fully understand linked list.
3. Study tree data structure and select a suitable
data structure for your project.
4. Fully understand binary file handling.
5. Implement data structure which data nodes are stored
in a binary file.
6. Study Database Management System and SQL grammar.
7. Use your data structure to implement a DMS.
8. Publicize your project using GNU license.
9. Enjoy it with your life!

Thanks!
Hee S. Chung
heesc@netian.com
 
Why all? Learn Pro*C and SQL...... Life is so easy.

Regards,
SwapSawe.|-0
 
Hi there,

Thanks for ur replies. Plz do point me to some website which gives better ideas regarding software projects.

bye!!
shri.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top